i have created text file in unix enviroment using java code.

For writing the text file i am using java.io.FileWriter and BufferedWriter. and for newline after each row i am using bw.newLine() method. (where bw is object of BufferedWriter )

and sending that text file by attaching in mail from unix environment itself automated that using unix commands).

My issue is, after i download the text file from mail in windows system, if i opened that text file the data's are not properly aligned. newline() character is not working i think so.

I want same text file alignment as it is in unix environment, if i opened the text file in windows environment also.

How to resolve the problem.Please help ASAP. Thanks for your help in advance.

pasting my java code here for your reference..(running java code in unix environment)

 File f = new File(strFileGenLoc);
 BufferedWriter bw = new BufferedWriter(new FileWriter(f, false));
 rs = stmt.executeQuery("select * from jpdata");
 while ( rs.next() ) {
 bw.write(rs.getString(1)==null? "":rs.getString(1));
 bw.newLine();
 }
link|improve this question

67% accept rate
You used a code block for the text? – Camilo Martin May 14 '10 at 8:29
Will the target system for opening the file always be windows, or will it vary? – James B May 14 '10 at 8:39
feedback

5 Answers

up vote 9 down vote accepted

Java only knows about the platform it is currently running on, so it can only give you a platform-dependent output on that platform (using bw.newLine()) . The fact that you open it on a windows system means that you either have to convert the file before using it (using something you have written, or using a program like unix2dos), or you have to output the file with windows format carriage returns in it originally in your Java program. So if you know the file will always be opened on a windows machine, you will have to output

bw.write(rs.getString(1)==null? "":rs.getString(1));
bw.write("\r\n");

It's worth noting that you aren't going to be able to output a file that will look correct on both platforms if it is just plain text you are using, you may want to consider using html if it is an email, or xml if it is data. Alternatively, you may need some kind of client that reads the data and then formats it for the platform that the viewer is using.

link|improve this answer
The end-of-line sequence on Windows is CR LF, not LF CR, so I would change that to br.write("\r\n"); (instead of \n\r). – Jesper May 14 '10 at 11:43
@Jesper - thanks, I've updated it accordingly, I knew it was there or thereabouts – James B May 14 '10 at 12:20
feedback

The method newLine() ensures a platform-compatible new line is added (0Dh 0Ah for DOS, 0Dh for older Macs, 0Ah for Unix/Linux). Java has no way of knowing on which platform you are going to send the text. This conversion should be taken care of by the mail sending entities.

link|improve this answer
i am not getting you. could you please explain it. – Manu May 14 '10 at 8:38
1  
Suppose you edit a text with your favorite editor in Linux. What will it do when you press enter ? It will append a new-line character. Before doing so, he will ask himself: what is my newline character ? Being Linux he will answer: 0Ah of course. If you send this text to a windows machine, the windows machine is responsible of converting 0Ah to 0Dh 0Ah otherwise viewing the text will not be much fun. – nc3b May 14 '10 at 8:43
@James: currently target system is Windows. but it may vary after some time. Any help would be appreciated. – Manu May 14 '10 at 8:43
feedback

bw.newLine(); cannot ensure compatibility with all systems.

If you are sure it is going to be opened in windows, you can format it to windows newline.

If you are already using native unix commands, try unix2dos and convert teh already generated file to windows format and then send the mail.

If you are not using unix commands and prefer to do it in java, use `bw.write("\r\n") and if it does not complicate your program, have a method that finds out the operating system and writes the appropriate newline.

link|improve this answer
@james: I am trying with bw.write("\r\n"); Once done let you guys ll k...now – Manu May 14 '10 at 9:34
Hi buddy's.. its working ..for the time being i ll use it. If any other solution available..please let me know.... – Manu May 14 '10 at 9:47
Thanks for all efforts – Manu May 14 '10 at 9:48
feedback

Don't know who looks at your file, but if you open it in wordpad instead of notepad, the linebreaks will show correct. In case you're using a special file extension, associate it with wordpad and you're done with it. Or use any other more advanced text editor.

link|improve this answer
feedback

If I understand you right, we talk about a text file attachment. Thats unfortunate because if it was the email's message body, you could always use "\r\n", referring to http://www.faqs.org/rfcs/rfc822.html

But as it's an attachment, you must live with system differences. If I were in your shoes, I would choose one of those options:

a) only support windows clients by using "\r\n" as line end.

b) provide two attachment files, one with linux format and one with windows format.

c) I don't know if the attachment is to be read by people or machines, but if it is people I would consider attaching an HTML file instead of plain text. more portable and much prettier, too :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.