ストリーム内の XML ファイルの編集に関するこの質問の解決策を実装するのに問題があります。MalFormedUrlException: no protocol が発生します。XML ファイルは UTF-8 としてエンコードされ、doctype はありませんが、整形式です。なぜこれが起こっているのか、私は困惑しています。
問題のあるコードは次のとおりです(byteArray
xmlがUpdatingXmlReader
あり、私のクラスです):
XMLReader reader =
new UpdatingXmlReader(SAXParserFactory.newInstance().newSAXParser());
Transformer xform = TransformerFactory.newInstance().newTransformer();
InputSource inputSource =
new InputSource(new ByteArrayInputStream(byteArray));
StreamResult streamResult =
new StreamResult(response.getOutputStream());
SAXSource saxSource = new SAXSource(reader, inputSource);
xform.transform(saxSource, streamResult);
私のテストでどのように呼び出されるか:
File file = new File("c:/test.xml");
InputStream input = new FileInputStream(file);
byte[] b = IOUtils.toByteArray(input);
// in production the byte array will come from the database
service.method(b, httpServletResponse ,httpServletRequest)
スタックトレースは次のとおりです。
javax.xml.transform.TransformerException:
java.net.MalformedURLException: no protocol:
at org.apache.xalan.transformer.TransformerIdentityImpl.transform(Unknown Source)
Caused by: java.net.MalformedURLException: no protocol: [B@22732273
at java.net.URL.<init>(URL.java:579)
at java.net.URL.<init>(URL.java:476)
at java.net.URL.<init>(URL.java:425)
at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
at org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
at org.apache.xerces.jaxp.SAXParserImpl.parse(Unknown Source)