在有/没有互联网的情况下,为OfflineCommand按顺序或随机顺序生成数字

时间:2018-06-29 21:16:44

标签: codenameone

我正在使用以下代码来生成编号以映射Storage中的offline命令。我想知道应该有更好的方法来处理或生成要在CN1中存储的数字。请告知。

public String isRandomRetrieval() {
int actID = 0; 
int counterR = Preferences.get("counterR", 1000);
actID = ++counterR;
if (actID > 10000) {
actID = 1000;
}
Preferences.set("counterR", actID);
return "" + actID;
}

0 个答案:

没有答案