简体   繁体   English

j2me中的数据存储选项

[英]Data Storage Options in j2me

I am creating application in j2me. 我在j2me中创建应用程序。 There is a huge data with whom I have to deal. 我必须处理大量数据。 I have used RMS but speed of retrieving a data from RMS is tedious process. 我已经使用过RMS,但是从RMS检索数据的过程很繁琐。 It takes long time then normal speed. 这需要很长时间,然后才能达到正常速度。 I can't use File because it requires permission every time whenever I fetch data or store data. 我无法使用文件,因为每次我获取数据或存储数据时,文件都需要获得许可。

so is there any other options for storing large data in j2me. 因此,在j2me中还有其他用于存储大数据的选项。

Thank you.... 谢谢....

  1. Some third party database available for j2me application. 一些第三方数据库可用于j2me应用程序。 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. 最后,您可以将数据存储到服务器中,并使用webservice从服务器中获取数据。 But needs GPRS. 但是需要GPRS。

I preferred last point for using huge data. 我更喜欢使用海量数据的最后一点。

1. 1。

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

2. 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. 3。

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

I preferred last point for using huge data. 我更喜欢使用海量数据的最后一点。

harsh 苛刻

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM