| Author |
Losing newlines in text file when zipping
|
Sean Chang
Greenhorn
Joined: Feb 12, 2009
Posts: 12
|
|
Hi,
I am trying to zip up text a file in java, the file includes newline characters, it zips successfully, but when I open it up in winzip, the newline characters are gone, can anyone please advise how to resolve this?
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16487
|
|
|
There's nothing in that code which does anything except copy the file byte-for-byte. So what makes you think the newlines are missing in the result?
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19232
|
|
|
Is this code executed on a Linux machine, and is the text file then opened in Notepad? Because Linux uses only \n for line breaks, and Notepad is notorious for only supporting the \r\n combination that Windows uses. Other text editors, including Microsoft's own WordPad (ok, technically not a text editor, but it can handle text files), are a lot better. Notepad++ is often recommended.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32830
|
|
Rob Spoor wrote: . . . Notepad++ is often recommended.
That is because it is often very good
|
 |
 |
|
|
subject: Losing newlines in text file when zipping
|
|
|