以下のように漢字を印刷しようとしましたが、うまくいきません。ある種のエンコーディングを行う必要があると思います。これについてmoを助けてくれませんか?
public static void main(String[] args)
{
String myString = "奥妙洗衣粉";
System.out.println(myString);
// Output in eclipse: Some characters cannot be mapped using Cp1252 character encoding.
// Either change the encoding or remove the characters which are not supported
// by the Cp1252 character encoding.
}
編集:文字列を印刷する前に、プログラムでそれを行う(エンコーディングを変更/適用する)にはどうすればよいですか?