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

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 是字符串,为啥报错呢?求教,谢谢

阅读 1.2k
1 个回答

因为read会抛DocumentException你没catch

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题