How do I read strings in J2ME?(如何在 J2ME 中读取字符串?)
问题描述
我正在使用 MIDP 2.0 (JSR 118),我刚刚注意到 J2ME 中没有字符串阅读器.
I'm using the MIDP 2.0 (JSR 118) and I just noticed that there is no reader for strings in J2ME.
有谁知道您应该如何以独立于平台的方式(即在两个不同型号的启用 java 的手机之间)从 InputStream
或 InputStreamReader
读取字符串?
Does anyone know how you are supposed to read Strings from an InputStream
or InputStreamReader
in a platform independent way (i.e. between two java enabled cell phones of different models)?
推荐答案
或者看看 DataInputStream.readUTF()
.
确实需要对从 InputStream 读取的字符串进行适当编码(如相应的 DataOutputStream.writeUTF(String)
) 所以它可能不是你要找的 -但它确实适用于不同的手机/型号等.
It does required that the string being read off the InputStream be encoded appropriately (as in by a corresponding DataOutputStream.writeUTF(String)
) so it might not be what you're looking for - but it does work across different phones/models etc.
这篇关于如何在 J2ME 中读取字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 J2ME 中读取字符串?
基础教程推荐
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 降序排序:Java Map 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01