1.判断文件的扩展名。
2.用解析类读取该文件,如果无异常。则是一个正常的XML文件。有异常。可以认为内容非标准XML的文件。
try {
DocumentBuilderFactory foctory =DocumentBuilderFactory.newInstance();
DocumentBuilder builder = foctory.newDocumentBuilder();
builder.parse(new File("D:\\test.xml"));
System.out.println("是xml文件");
} catch (Exception e) {
System.out.println("不是xml文件");
}
我都是看是否有这一个标签
File file = new File("xxxxx.xxx");//file name
String fileName = file.getName();
if(fileName.endsWith(".xml")){
System.out.println("It is xml file");
}
看扩展名不就完了...2楼正解