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.
JTidy を使用して HTML ファイルから XML を生成する必要があります。ソースのエンコーディングは GB2312 なので、生成される XML のエンコーディングも GB2312 に設定する必要があります。
現在の XML プロローグ:
<?xml version="1.0"?>
必要なもの:
<?xml version="1.0" encoding="gb2312"?>
どうすればこれを達成できますか?