我想將int寫入文本文件。 我寫了這個代碼無法將文本寫入文件
public static void WriteInt(int i,String fileName){
File directory = new File("C:\\this\\");
if (!directory.exists()) {
directory.mkdirs();
}
File file = new File("C\\"+fileName);
FileOutputStream fOut = null;
try {
//Create the stream pointing at the file location
fOut = new FileOutputStream(new File(directory, fileName));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
OutputStreamWriter osw = new OutputStreamWriter(fOut);
try {
osw.write(i);
osw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
但在輸出文件我沒有整型,只是一個符號。 任何想法做到這一點?
朋友,什麼是C \\? – Leo 2014-09-02 16:51:02
@Leo - 很可能是*錯別字* – TheLostMind 2014-09-02 16:52:07
更改爲C:\\但它仍然不起作用。 – Roki20121 2014-09-02 16:54:31