FileOutputStream   fos   =   new   FileOutputStream( "c:\\test.txt "); 
String   nextLine   =   System.getProperty( "line.separator "); 
String   testStr   =   "abcd "+nextLine+ "efgh "+nextLine+ "igkl "
byte[]   c   =   testStr.getBytes(); 
fos.write(c); 
fos.close();
05-11 13:19