1.导入jar包
2.获取document文档 反射获取path
String path=Jsoupdemo.class.getClassLoader().getResource("students.xml").getPath();
3.获取到document后 获取element的方法(运用多种方法 ID Name Tag .......)
4.根据element提供的方法进行相关操作
public static void main(String[] args) throws IOException {
String path=JsoupLession.class.getClassLoader().getResource("Students.xml").getPath();
System.out.println("path"+path);
Document document= Jsoup.parse(new File(path),"UTF-8");
System.out.println("document:"+document);
Elements elements = document.getAllElements();
System.out.println("-------------------------");
Element element=document.getElementById("2"); }