2011-01-20 35 views
4

我在j2me中創建應用程序。有一個我必須處理的龐大數據。 我已經使用了RMS,但從RMS檢索數據的速度是一個繁瑣的過程。正常速度需要很長時間。 我無法使用File,因爲每次我獲取數據或存儲數據時都需要權限。j2me中的數據存儲選項

所以有什麼其他的選擇在j2me中存儲大量的數據。

謝謝....可用於J2ME應用程序

回答

0

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. 

我優選最後一個點用於使用龐大的數據。

苛刻

2
  1. 一些第三方數據庫。有關數據庫列表,請參閱此link

  2. 將數據存儲到文本文件中並將文本文件存儲到項目工作區中。你可以從這個文本文件中讀取數據。

  3. 最後,您可以將數據存儲到服務器並使用webservice從服務器獲取數據。但需要GPRS。

我更喜歡使用大量數據的最後一點。