JSR 256 电池事件
如何使用 JSR 256 检测电源线何时从电源插座拔出?
How can I detect whenever the power cord is unplugged from electrical socket using JSR 256?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 JSR 256 检测电源线何时从电源插座拔出?
How can I detect whenever the power cord is unplugged from electrical socket using JSR 256?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以将 javax.microedition.io.Connector.sensor 添加到项目属性的应用程序描述符的 API 权限选项卡中。
You would add javax.microedition.io.Connector.sensor to the API Permissions tab of the Application Descriptor of the project properties.
快速浏览一下 JSR 的规范:(
您可能想要寻找代码示例,从规范本身的附录 D 开始,最新的 JavaME SDK,索尼爱立信开发人员网站,然后谷歌)
一如既往,我会担心关于 JSR 的不同实现中的碎片,但这是我的第一个想法:
您需要将 javax.microedition.io.Connector.sensor 添加到您的 MIDlet 权限。
-------编辑------
索尼爱立信 Satio 手机(S60 第 5 版)上 JSR-256 实施的文档:
电池电量传感器具有以下特征:
数量:battery_charge
上下文类型:设备
URL:sensor:battery_charge;contextType=device;model=SonyEricsson
频道:(索引:名称、范围、单位)
0:电池电量、0-100、百分比
1:charger_state,0-1,布尔值
From a quick look at the specifications of the JSR:
(you might want to look for code examples, starting with Appendix D of the spec itself, the latest JavaME SDK, Sony Ericsson developer website, then google)
As always, I would be worried about fragmentation in the diverse implementations of the JSR, but here's my first idea:
You'll need to add
javax.microedition.io.Connector.sensor
to your MIDlet permissions.-------EDIT------
Documentation from the JSR-256 implementation on Sony-Ericsson Satio phone (S60 5th edition):
The battery charge sensor has the following characteristics:
Quantity: battery_charge
Context type: device
URL: sensor:battery_charge;contextType=device;model=SonyEricsson
Channels: (index: name, range, unit)
0: battery_charge, 0-100, percent
1: charger_state, 0-1, boolean