我想比较两种国家语言并检查它们是否一致。
String language = loc.locale.getDisplayLanguage(loc.locale); // loc is a JavaBean,locale is a java.util.Locale instance
if ("Čeština".trim().equalsIgnoreCase(language.trim())) { // make compilation is not equal
language = "Česky";
}
我在Eclipse中编译。 If表达式的结果为true。但是在make compilation的源代码中,条件是错误的。我转换为utf-8格式进行比较,它不能。
现在我请求帮助。提前谢谢!