如何在J2ME中将文本写入嵌入式文件?

问题描述 投票:0回答:0

我想在 J2ME 中创建带有嵌入式文件的应用程序。 我能够从文件中读取文本(使用 InputStream),但我没有成功写入文件, 我尝试使用 OutputStream 但我没有找到太多关于它的信息, 我尝试使用 FileConnection,但它需要文件的绝对路径 (file:///c:/...)。 我试过这个:

OutputStream os = getClass().getResourceAsStream("/example.txt").openOutputStream();
String text = textField.getString();
os.write(text.getBytes());
os.flush();
os.close();

但是 openOutputStream 函数对我不起作用.. 如何写入嵌入式文件? 谢谢!

embedded java-me outputstream writefile
© www.soinside.com 2019 - 2024. All rights reserved.