一部のエンコーディング文字のデコードに問題があります。デコードする必要があるのは %E9 です。この D%E9bardeur と degr%E9 のような文字列があります。Java クラスで行うことは次のとおりです。
try
{
System.out.println(o);// test
o = URLDecoder.decode((String) o, "UTF-8");
}
catch (UnsupportedEncodingException e)
{
e.printStackTrace();
}
この操作の後、私が得るのは
D�bardeur and degr�
utf-8にデコードしないとまったく同じことが起こります
何かアドバイス?どうも