私はいくつかのスタイルシートで出力を変換する必要があるフィルターに取り組んでいます。コードの重要なセクションは次のようになります。
PrintWriter out = response.getWriter();
...
StringReader sr = new StringReader(content);
Source xmlSource = new StreamSource(sr, requestSystemId);
transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
transformer.setParameter("encoding", "UTF-8");
//same result when using ByteArrayOutputStream xo = new java.io.ByteArrayOutputStream();
StringWriter xo = new StringWriter();
StreamResult result = new StreamResult(xo);
transformer.transform(xmlSource, result);
out.write(xo.toString());
問題は、国別文字がUTFを使用せずにhtmlエンティティとしてエンコードされることです。トランスフォーマーにエンティティの代わりにUTF-8を使用させる方法はありますか?