Hi ,
I am wring
string to txt file using
FileOutputStream fileOutputStream=new FileOutputStream("D:/test.txt");
BufferedWriter out =new BufferedWriter(new OutputStreamWriter(fileOutputStream,"UTF-8"));
out.write(text);
If i open the file in wordpad,its fine but when i open it on notepad ,its not showing text in proper format.There is no "\n" shown.All the data is shown in one line.There is no line breal etc.
Please help to resolve this issue.
regards,
ajse