Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JSoup を使用して、ユーザーからの受信テキストをクリーンアップしています。残念ながら、クリーニングのために非ASCII文字をサポートしていないようです:
assertEquals("привет", Jsoup.clean("привет", Whitelist.none()));
これは動作しません。
何か案が?
コードを実行する場合のデフォルトのエンコーディングは何ですか? 多分これはUTF-8ではなく、Linux / Windowsのデフォルトです。VM 引数-Dfile.encoding=UTF8を使用して UTF-8 を保証できます。
-Dfile.encoding=UTF8
jsoup 1.6.3 でもコードをチェックしました --> テストは成功しました