5

我不知道该怎么办了。一切似乎都是正确的;输入输出。

我生成 xml 文件并发送到某个服务进行验证。

回应是:

11:10:34,922 INFO  [STDOUT] printing out the input stream
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><Response>
    <Method name="XML/Release/New" time="2013-04-23T15:10:35.1446238Z">
        <ResponseStatus>100</ResponseStatus>
    </Method>
</Response>
finished printing out the input stream
11:10:34,922 INFO  [STDOUT] got the unmarshaller
11:10:34,925 ERROR [PRNDataAccessUtil] Caught an error: javax.xml.bind.UnmarshalException
 - with linked exception: [org.xml.sax.SAXParseException: Premature end of file.] : null

编码:

try {
            out = connection.getOutputStream();
            ByteArrayOutputStream bos = PRNPostNewsReleaseUtil.createNewsReleaseXml(newsRelease);
            bos.writeTo(out);

            JAXBContext context = JAXBContext.newInstance(Response.class.getPackage().getName());
            in = connection.getInputStream();

            BufferedReader inp = new BufferedReader(new InputStreamReader(in));
            System.out.println("printing out the input stream");
            String line;
            while((line = inp.readLine()) != null) {
                System.out.println(line);
            }
            System.out.println("finished printing out the input stream");

            Unmarshaller unmarshaller = context.createUnmarshaller();
            response = (Response) unmarshaller.unmarshal(in);

        } catch (Exception ex) {
            log.error("Caught an error: " + ex + " : " + ex.getMessage());
            return null;
        } finally {
            if (null != in) connection.disconnect();
        }
4

3 回答 3

8

您收到错误是因为InputStream在输出过程中已经推进到最后。假设您的缓冲区BufferedReader足够大以包含整个 XML 文档,您可以在输出后将其重置,然后对其进行解组。

于 2013-04-23T16:17:49.393 回答
3

有一次发生在我身上,我使用了错误的类名来构建 JAXBContext 对象,所以当我尝试编组一个对象时,创建了一个空的 XML 文件,从而导致 unmarshaller 失败。

因此,请确保使用您要编组的类实例化 JAXBContext 对象。

于 2014-09-01T02:26:23.550 回答
1

这里要注意的另一件事是,即使您没有在代码中显式读取缓冲区,而是有一个表达式监视来读取输入,它最终也会产生与增加流头相同的效果。在花费数小时调试此异常后发现了这一点。

于 2014-03-19T21:11:00.060 回答