private static void write(String x, File file)
throws FileNotFoundException, IOException {
StringTokenizer tokenizer = new StringTokenizer(x) ;
FileOutputStream fop = new FileOutputStream(file, true);
while (tokenizer.hasMoreTokens()) {
fop.write(tokenizer.nextToken().toLowerCase().getBytes());
fop.write(System.getProperty("line.separator").getBytes());
}
}
關於上面的代碼,我在我的代碼中調用這個函數來在某些條件成立時寫一些單詞。但是,有時我會遇到一些奇怪的字符,例如â€
,sé
等。怎麼可能防止這樣的事情出現?異常字符已被寫入文件
一個完美的最後一行:) – lonesome