Okay so I'm using bufferedreader for my input stream
and I want to read in character by character which
will work for that purpose.
However I don't know how to convert from int to something I can use like a string or Char.
Also I want to ignore carriage returns and linefeeds. I know one is 0x0A but what is the value for the other (in the case of int.
Thankx,
Martin If the sky is blue and the Sun is yellow.... Why isn't the air Green?
Code:
br = new BufferedReader(new FileReader(fileLoc) );
Code:
myInt = br.read()
However I don't know how to convert from int to something I can use like a string or Char.
Also I want to ignore carriage returns and linefeeds. I know one is 0x0A but what is the value for the other (in the case of int.
Thankx,
Martin If the sky is blue and the Sun is yellow.... Why isn't the air Green?