the eclipse tells that lang and i cant find a solution
Exception in thread \"main\" java.lang.NumberFormatException: For input string: \"2463025552\"
Integer.parseInt( s2[1].trim() ); here is your problem. So, change your parsing Integer to Long
Integer.parseInt( s2[1].trim() );
Integer
Long