想要在应用程序启动后立即在 J2me 应用程序中创建记录存储

发布于 2024-10-07 03:45:17 字数 118 浏览 0 评论 0原文

正在开发一个 j2me 项目...我需要做的是从预先存在的 xml 文件(在 d jar 本身中)创建一个记录存储,以便我可以从中读取和写入数据...并希望以 sson 的方式执行此操作当应用程序启动时,请帮助......

working on a j2me project... what i need to do is create a record store from a preexisting xml file (in d jar itself) so i can read and write data from it..... and wants to do this as sson as the application starts pls help.......

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

述情 2024-10-14 03:45:18

startMIDlet() 方法中编写以下代码

RecordStore recordStore = RecordStore.openRecordStore("recordstorename", true);
String data="data";
recordStore.addRecord(data.getBytes("UTF-8");, 0, data.getBytes().length);

write following code in startMIDlet() method

RecordStore recordStore = RecordStore.openRecordStore("recordstorename", true);
String data="data";
recordStore.addRecord(data.getBytes("UTF-8");, 0, data.getBytes().length);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文