0

ディスクから読み取るときにファイルから XML をマーサリングできますが、Web 経由でダウンロードするとこのエラーが発生します。

[org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 1; Premature end of file.]
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.createUnmarshalException

Web入力ストリームには追加情報か何かが含まれていると思いますか?

作品

InputStream inputStream = null;
try {
    inputStream = new FileInputStream(filePath);
} catch (FileNotFoundException e) {
    e.printStackTrace();
}  

動作しません

InputStream inputStream = null;

    try {
        inputStream = new URL(url).openStream();
    } catch (MalformedURLException e) {
        e.printStackTrace();

        } catch (IOException e) {
            e.printStackTrace();
        }

BulkDataRecordType bulkDataRecordType = getObjectFromXml(inputStream);

別のクラスで

public BulkDataRecordType getObjectFromXml(InputStream inputStream)
        {

            try {

                    JAXBContext jc = JAXBContext.newInstance(BulkDataRecordType.class);
                    Unmarshaller unmarshaller = jc.createUnmarshaller();
                    bulkDataRecordType = (BulkDataRecordType) unmarshaller.unmarshal(inputStream);

                } catch (JAXBException e1) {
                    e1.printStackTrace();
                }
4

1 に答える 1