java xpath 报错求指教,字符串报错

发布于 2022-09-12 13:06:45 字数 1252 浏览 14 评论 0

image.png

package main;
import com.company.mingspider;
import org.dom4j.DocumentException;
import org.dom4j.Node;
import org.dom4j.io.SAXReader;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;
import java.io.IOException;
import java.util.List;
public class Main {
    public static void main(String[] args) {
        String ReponseBody=null;
        mingspider mingspider= new mingspider();
        try {
            SAXReader saxReader = new SAXReader();
            Document document;
            ReponseBody =mingspider.getrequestdata("https://gongshang.mingluji.com/beijing/diqu/%E4%B8%9C%E5%9F%8E");
            System.out.println(ReponseBody);
            document = (Document) saxReader.read(ReponseBody);
            Elements list = document.select("/name");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (DocumentException e) {
            e.printStackTrace();
        }
        // write your code here
 }
    public static String getType(Object test) {
        return test.getClass().getName().toString();
    }
}

Document document = saxReader.read(ReponseBody);

这里的ResponseBody 是字符串,为啥报错呢?求教,谢谢

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

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

发布评论

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

评论(1

别想她 2022-09-19 13:06:45

因为read会抛DocumentException你没catch

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