\n troubles

From: gajo (gajo_at_eunet.yu)
Date: 06/24/04


Date: Thu, 24 Jun 2004 23:28:24 +0200

OK, again I have troubles dealing with String. I have a field of the type
String which contains some text that is separated into lines at random
places, or in other words, the text contains \n\r (or \n in the case of
linux). I write this field into a file and there it looks ok, but when I
read it back I get the whole string in one line. So I figured I'd add a
separator at the end of each line. However, then I get an empty line after
each line! I'm using GZIP to pack the data, so perhaps that is causing this?
Btw. after each block of text I write an end-of-block string to know that
it's the end of that block.
Here's the explanation in code:

String notes = ""; // the result
String lin = ""; // used to read one line from the file
final String eob = "---$#-||-"; // end of block
lin = filein.readLine(); // I'm reading the 1st line

while (lin.compareTo(eob) != 0) {
    notes += lin + System.getProperty("line.separator");
    lin = filein.readLine();
    if (lin == null) { break; } // this will never occur, but just in case
}
return notes;

//-------------
// filein is a BufferedReader
// I can't change that, don't ask why, and
// because of that this is how I read a file
filein = new BufferedReader(
           new InputStreamReader(
           new BufferedInputStream(
           new GZIPInputStream(
           new FileInputStream("testFile.gz"))))));

I figured I could erase one empty line after the reading-in is done, but I'm
not sure if this will happen in every case, on every computer. I'm thinking
it could be an anomaly for Windows files.
Anyway, I'm waiting for some suggestions ;)

Gajo



Relevant Pages

  • Re: Cross domain iframe access
    ... and WebKit do not allow to read back the `location' string value ... Such that any attempt to read the - toString - property, or if it can be read then to execute its value, may be the point at which a security exception is thrown. ... Other forms of direct access to the - location - object certainly can stand as a demonstration that reading its value is not subject to any security restrictions. ...
    (comp.lang.javascript)
  • Re: A Modern Method for Guitar
    ... as part of my new practice schedule, i'm reading for 30 minutes every ... Open position is actually much harder to play in than the upper positions because you have to deal with open strings ringing out when they're not supposed to be. ... I generally try to sight read in one of those positions and simply walk down the low E string for any notes below the position's range or up the high E string for nay notes above the position's range. ...
    (rec.music.makers.guitar.jazz)
  • Re: Easy question but I cant seem to get it to work
    ... BufferedReader br = new BufferedReader; ... return returnText; ... Reading a whole file into a string is dangerous, what if the whole file is 2GB long? ... I always just loop through reading each line and appending to a StringBuffer until readLine is null. ...
    (comp.lang.java.help)
  • Re: strange problem with serial communication
    ... Each time I send a string, ... > Your code is written to stop reading whenever ReadFile gets a timeout, ... > but you have set the timeout to zero. ... > only one byte for each ReadFile call. ...
    (microsoft.public.vc.mfc)
  • Re: strange problem with serial communication
    ... Each time I send a string, ... > Your code is written to stop reading whenever ReadFile gets a timeout, ... > but you have set the timeout to zero. ... > only one byte for each ReadFile call. ...
    (microsoft.public.windowsce.embedded.vc)