电池电量百分比的测量单位

Unit of Measure for Battery Level Percentage

我正在项目中使用 JSR 363 Reference Implementation。我希望使用和显示从设备获得的电池电量。

例如Quantity could be used to represent battery level as a percentage. Although ElectricPotential is the obvious candidate, the devices I'm targeting report the value in a relative range from empty to full. See iOS docs

我打算将其显示为百分比,理想情况下使用 QuantityFormat 处理其他数量的一般方式。

Battery Level: 57%

备用显示可能是图形化的,我不希望图书馆提供:


(来源:freeiconbox.com

虽然 Java ME 8 Embedded 为 power management 提供可选包,但根据您的目标设备,它们可能不会 运行 MEEP 8 或 Java ME 8 Embedded .幸运的是,JSR 363 支持两者,我们也将在 MEEP 8 和我们的 Ri 之上提供类似的东西。

实际的 class 会有所变化,因为我们正在重组 API 和其他模块中的数量,但目前在 SIclass的折射率,一个无量纲单位常数PERCENT

/**
 * A dimensionless unit accepted for use with SI units (standard name <code>%</code>).
 */
public static final Unit<Dimensionless> PERCENT

将可用并且是此用例的最佳单元。

此致, 沃纳凯尔 联合规范负责人,JSR 363