DOM4J 读取文件 读取字符串

通常情况下,我们需要用dom4j读取本地的配置文件,其文件格式为xml格式,但是有时候却需要读取例如数据库中保存好的xml形式的数据,这儿就得读取xml格式的字符串,一下提供两种读取方式.

第一,读取文件里面的内容:

       
File file = new File("c:\\test.txt");
        org.dom4j.io.SAXReader reader = new org.dom4j.io.SAXReader();
        Document document = reader.read(file);
        Element root = document.getRootElement();


其中test.txt为xml形式的数据文件,然后由此的到root element就可以随意操作了


第二,读取字符串作为输入:

       
Document document = DocumentHelper.parseText(new String("d"));
        Element root = document.getRootElement();



提供两种常用的dom4j操作方便使用

你可能感兴趣的:(DOM4J 读取 文件 字符串)