我正在使用 Java,我正在尝试从一些 http 链接获取 XML 文档。我正在使用的代码是:
URL url = new URL(link);
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("GET");
connection.connect();
Document doc = null;
CountInputStream in = new CountInputStream(url.openStream());
doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(in);
不要注意CountInputStream
,它是一些像常规输入流一样的特殊类。
使用上面的代码,我有时会遇到错误Fatal Error :1:1: Content is not allowed in prolog
。我认为这与 xml 格式错误有关,但我不知道如何修复它。