2 つの国語を比較して、一致しているかどうかを確認したい。
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 コンパイルによるソース コードでは、条件は false です。比較するためにutf-8形式に変換しますが、できません。
今、私は助けを求めます。前もって感謝します!