来自 url 的 xml 响应

发布于 2024-12-16 02:35:25 字数 884 浏览 0 评论 0原文

我编写了一些小代码来从 URL 响应中读取 XML,如下所示:

import java.io.IOException;
import java.net.URL;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import org.w3c.dom.*;
import org.xml.sax.SAXException;

public class example{


    private static String url="http://www.example.com/";




    public static void main(String[] args) throws ParserConfigurationException, SAXException, IOException {


        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(new URL(url).openStream());




}

}

问题就在这里:它给出了很多错误,例如,它

Exception in thread "main" java.net.SocketException: Connection reset

根据网站说或其他内容。我尝试过,但到目前为止,它对我尝试过的任何网站都不起作用。有什么解决办法吗?

I wrote some small codes to read XML from a URL response as below:

import java.io.IOException;
import java.net.URL;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import org.w3c.dom.*;
import org.xml.sax.SAXException;

public class example{


    private static String url="http://www.example.com/";




    public static void main(String[] args) throws ParserConfigurationException, SAXException, IOException {


        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(new URL(url).openStream());




}

}

the problem lies here: it gives so many errors, for example, it says

Exception in thread "main" java.net.SocketException: Connection reset

or other things , based on the website. i tried but it didnt work for any website i tried so far. any solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白昼 2024-12-23 02:35:25

URL 应指向文档或文件以将其作为流读取。
例如 URL:http://www.example.com/products/downloads/information.xml< /a>

the URL should point to a document or a file to read it as a stream.
eg URL: http://www.example.com/products/downloads/information.xml

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文