java – j2me中的数据存储选项

我在j2me中创建应用程序.我必须处理大量数据.

我使用过RMS,但从RMS检索数据的速度是繁琐的过程.它需要很长时间才能正常速度.

我无法使用File,因为每次获取数据或存储数据时都需要权限.

那么在j2me中存储大数据还有其他选择吗?

谢谢….

最佳答案 1.

  Some third party database available for j2me application. See this link for list of database.

2.

  Store the data into text files and store the text files into your project workspace. You can read the data from this text files.

3.

  Finally you can store the data into server and fetch the data from server using webservice. But needs GPRS.

我更喜欢使用大量数据的最后一点.

苛刻

点赞