I am reading certain parts of a text file and displaying it on the command window. The substrings are actually numbers. I want to convert that text to Strings when I do something like
int real_numbers = Integer.parseInt(number);
it gives an error :
java.lang.NumberFormatException: For input string: "0.0091" at java.lang.NumberFormatException.forInputString(Unknown Source) at java.lang.Integer.parseInt(Unknown Source) at java.lang.Integer.parseInt(Unknown Source)
Below is the code that gives this particular error:
String read = "";
String number ="";
for (int linenum=0; linenum<400; linenum++) {
read = inputFile2.readLine();
if(read == null){}
else{
if (read.startsWith("D")) {
number = read.substring(9,15);
System.out.println(number);
int real_numbers = Integer.parseInt(number);
System.out.println(real_numbers);
}
}
}
read != null && read.startsWith("D")– unholysampler Jan 13 '11 at 16:48