- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想知道打开 RMS 记录是否检查它是否在 javame 中被修改。例如
RecordStore rs;
//First RMS access
rs.open("gamescores",true);
rs.addRecord(null,0,0);
rs.closeRecordStore;
//Second RMS access
rs = RecordStore.open("gamescores",true);
long timeStamp = rs.getLastModified();
rs.closeRecordStore();
getLastModified() 会返回第一次或第二次 RMS 访问的时间。
最佳答案
一种不同的方法旨在跟踪记录的修改 - getVersion() :
Each time a record store is modified (by
addRecord
,setRecord
, ordeleteRecord
methods) its version is incremented. This can be used by MIDlets to quickly tell if anything has been modified. The initial version number is implementation dependent. The increment is a positive integer greater than 0. The version number increases only when the RecordStore is updated. The increment value need not be constant and may vary with each update.
至于getLastModified方法,其规范不允许以可移植的方式可靠地告诉您所询问的差异:
Returns the last time the record store was modified, in the format used by System.currentTimeMillis().
关于java - Java Microedition RMS 是否在打开时标记为已修改但未进行数据更改?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12084245/
我知道这很简单,但我已经安装了 J2Me。我只想使用 javax.microedition.io.HTTP api,在哪里可以找到我可以导入的 jar。 最佳答案 findjar 是你的 friend
我想知道打开 RMS 记录是否检查它是否在 javame 中被修改。例如 RecordStore rs; //First RMS access rs.open("gamescores",true);
我正在尝试使用http://www.jappit.com/blog/2008/12/04/j2me-animated-gif-encoder/从jpeg文件创建gif这个线程是我的引用How to c
我正在尝试将 Android applet 的源代码导入到 eclipse 中,但出现“导入 javax.microedition 无法解析”错误。我已经安装了oracle_java_me_sdk-3
需要从sun官网安装什么exe import java.util.*; import javax.microedition.io.*; import javax.microedition.midlet
我一直在努力寻找一种方法来玩 Xlet开发(作为 javax.microedition.xlet 包中 Personal Basis Profile 的一部分)。 目前作为起点,我有 Eclipse
我想创建一个应用程序,通过蓝牙连接将我的 Android 手机用作 PC 的 Remote ,但当我尝试导入此包时遇到问题:javax.microedition.io.StreamConnection
我有一个 J2ME 应用程序,我需要在 J2ME 中绑定(bind)我的 XML 响应。在这种情况下,你能帮我吗?如何在 J2ME 中绑定(bind) XML 数据绑定(bind)? 最佳答案 JiB
在 LWUIT 元素上绘制自定义元素(即使用 J2ME native 图形)的最佳方法是什么? 自定义元素是映射库的实现,它将其内容(例如 Google map )绘制到 Graphics 对象。如何
我在这里发布了这个错误,因为每当我尝试从 j2me 应用程序连接到我的 Web api 时,它都困扰了我很长时间。如果有人遇到与我相同的问题,我只想分享这个错误。 最佳答案 当我发生这个错误时,是因为
我一直在努力研究这个问题,但似乎很难找到可靠的信息。有没有人创建了任何与 NFC 手机、卡等交互的 java 包。我还没有找到很多关于 NFC 真正工作原理的信息。我只想在扫描时能够读取手机的 ID
我正在尝试用 java 编写一个非常简单的移动应用程序(J2ME)。这个想法是通过 URL 输入访问网站并将网站内容读入缓冲区。 问题就在这里。这对某些 URL 来说效果很好,但对其他 URL 却不起
我使用的是 NetBeans 6.9.1。当我尝试 import javax.microedition.lcdui.Command; import javax.microedition.lcdui.C
我在使用 import javax.microedition.lcdui.* 时遇到错误; 包 javax.microedition.lcdui.* 不存在。 但是行 import javax.mic
如何向 javax.microedition.lcdui.CustomItem 添加监听器,以便在选择它时触发事件? 谢谢 最佳答案 没有听众。您要做的就是覆盖各种低级输入事件,例如pointerPr
我想在我的 ExtendedGLSurfaceView(从 GLSurfaceView 扩展)中使用 eglPresentationTimeANDROID。 方法出现在: EGLExt.eglPres
只是在网络上找不到任何关于 android.opengl 类用途的信息:它们似乎是 javax.microedition.khronos.opengles 的副本 -仅使用静态方法与成员方法。 那么使
当将一个包含 5000 个 Java 文件的大型项目从 Java ME 移植到 Java SE 时,我尝试替换 javax.microedition.event.Event使用我自己的类(对于 Eve
在我的 Blackberry 应用程序中,我实现了摄像头,并想用我自己的声音替换默认的快门声音。我想我可以通过使用 enableShutterFeedback(false) 方法使默认相机声音静音然后
我正在尝试使用 J2ME 编写一个应用程序,该应用程序使用 javax.microedition.rms.RecordStore来存储持久数据。我正在 Gentoo 上的 NetBeans 6.0 和
我是一名优秀的程序员,十分优秀!