gpt4 book ai didi

java - 从 TextField 获取的字符串在 J2ME 中无法转换为小写

转载 作者:行者123 更新时间:2023-12-02 07:41:13 25 4
gpt4 key购买 nike

我有一个 TextField,我想获取其内容并将其转换为小写字符串。这是我的代码:

TextField searchWord = new TextField("label", "Some Text", 35, TextField.ANY);
String word = searchWord.getString();
String word2 = word.toLowerCase();
System.out.println(word2);

如果我在文本框中输入单词“Book”,则效果很好,即word2将是字符串“book”,但如果我输入俄语单词< strong>“Книга”它根本不起作用,即word2仍然是“Книга”

有针对这种情况的黑客攻击吗?

谢谢

最佳答案

我认为您需要使用toLowerCase(Locale loc)方法:

Converts all of the characters in this String to lower case using the rules of the given Locale.

Here是 Java SE 7 平台中可用的语言环境列表。

关于java - 从 TextField 获取的字符串在 J2ME 中无法转换为小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11554677/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com