When i paste parseInt("3cf1bb13f1c96", 16) to javascript console, it successfuly converts to integer value which is 1072142774901910 but when i use Integer.parseInt("3cf1bb13f1c96", 16) in java it prints something
Exception in thread "main" java.lang.NumberFormatException: For input string: "3cf1bb13f1c96"
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at Main.example(Main.java:line)
at Main.example(Main.java:line)