我想知道如何将文本内容写入文件。我有一个BasicEditField和一个保存按钮。单击该按钮时,应将BasicEditField文本内容保存到文本文件中,以便稍后检索该文件。
答案 0 :(得分:1)
以下是FileConnection详细信息的链接。希望有所帮助! itsteju打败了我。 :)
答案 1 :(得分:0)
查看FileConnection
javax.microedition.io.file
界面
答案 2 :(得分:0)
/** File connection object */
FileConnection fc = (FileConnection) Connector.open(Const.FILE_PATH);
if (fc.exists() == false) {
fc.create();// create file at the location path
}
OutputStream os = fc.openOutputStream();
os.write(log.getBytes()); // Write text to file
os.close();
fc.close();// close the file connection object