知识点补充:
DocumentBuilderFactory
是用于创建DOM模式的解析器对象 , DocumentBuilderFactory是一个抽象工厂类,它提供了一个newInstance
方法 ,这个方法会根据本地平台默认安装的解析器,自动创建一个工厂的对象并返回。
parse()
方法用于解析 XML 文档,得到代表整个文档的 Document 对象。
判断文件是否是xml格式
可以通过文件扩展名进行判断,但没法保证文件扩展名正确而内容却不是XML格式,因此可以使用异常进行判断。
示例:
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
private static boolean isXmlDocument(File file){
boolean flag = true;
try {
DocumentBuilderFactory foctory =DocumentBuilderFactory.newInstance();
DocumentBuilder builder = foctory.newDocumentBuilder();
builder.parse(file);
flag = true;
} catch (Exception e) {
flag = false;
}
return flag;
}
推荐教程:java开发入门