1. 程式人生 > >java生成unicode編碼格式的txt檔案

java生成unicode編碼格式的txt檔案

{
FileOutputStream fos = null;
BufferedOutputStream osw = null;
File file =new File(strFilePath);
try
{
fos = new FileOutputStream(file);
osw = new BufferedOutputStream(fos);
byte[] bom={-1, -2};  
osw.write(bom);  
osw.write(strText.getBytes("UTF-16LE"));
osw.flush();
fos.close();
osw.close();
}
catch(Exception e)
{
e.printStackTrace();   
}

return true;
}