Hi,
I have retrieved values in a file. Used
Double dval;
String line;
try{
BufferedReader in=new BufferedReader( new FileReader("Fil e1.txt"));
line = in.readLine();
dval=Double.par seDouble(line);
System.out.prin tln(dval);
}
catch(IOExcepti on e){}
catch(NumberFor matException e){}
.
.
.
.
Well, I am not getting any errors, Yet dval is not being printed. Please Help me!!
I have retrieved values in a file. Used
Double dval;
String line;
try{
BufferedReader in=new BufferedReader( new FileReader("Fil e1.txt"));
line = in.readLine();
dval=Double.par seDouble(line);
System.out.prin tln(dval);
}
catch(IOExcepti on e){}
catch(NumberFor matException e){}
.
.
.
.
Well, I am not getting any errors, Yet dval is not being printed. Please Help me!!
Comment