在 J2ME 中将 char 转换为小写而不使用 Character 类
我想在 J2ME 应用程序中将 char
转换为小写。通常的 Character.toLowerCase()
不适用于 J2ME 中的任意 Unicode 字符,因此我需要一些轻量 API,或者最好是一段代码这样做。
谢谢!
I'd like to convert a char
to lower case in a J2ME app. The usual Character.toLowerCase()
doesn't work for an arbitrary Unicode character in J2ME, so I need some light API, or, preferably, a piece of code that would do so.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
基于 JavaSE JDK 中
Character
的toLowerCase()
方法:您可以从 JDK 中阅读源代码,了解这里真正做了什么,并将同样的事情应用到您的应用程序中。 JME 中自己的类。
资源:
Character.toLowerCase()
Based on the
toLowerCase()
method fromCharacter
in JavaSE JDK:You can read the source code from the JDK and understand what is really done here and apply the same thing with your own classes in JME.
Resources :
Character.toLowerCase()
我刚刚复制了 Java SE 1.3 中的一些内容并将其包含在我的 J2ME 应用程序中。一般来说,它是来自
Character
类的一些方法和三个大数组。I just copied some of the stuff from Java SE 1.3 and included it in my J2ME app. Generally, it's a few methods and three big arrays from the
Character
class.