Hello all,
Im reading from a file (data.bin) using the following approach -
fis1 = new FileInputStream(file1);
String data;
dis1 = new DataInputStream(fis);
buffread1=new BufferedReader(new InputStreamReader(dis1));
while( (data= buffread1.readLine())!=null){
}
Now im getting the io exception of read error. Now im guessing that I probably am not able read the data in the file as they are stored in the following format.
#SP,IN-1009579,13:00:33,20/01/2010, $Bœ™šAe%N B\VÈ–7$B™šAciC B]|XçF [s + ýŒ 01210B3âEªP6@·B.
the above is just one line of the file and i want to read every line of that file and carry out operation on the data that is read. Any pointers on how the above can be accomplished would be of great help.
Cheers