將字符串寫入文件的五種方法

public void WriteStringToFile(String filePath) { try { File file = new File(filePath); PrintStream ps = new PrintStream(new FileOutputStream(file)); ps.println("我是程序員");//
相關文章
相關標籤/搜索