|
|
package com.platform.utils;
|
|
|
|
|
|
import java.io.File;
|
|
|
import java.io.FileOutputStream;
|
|
|
import java.io.IOException;
|
|
|
import java.io.OutputStreamWriter;
|
|
|
import java.lang.reflect.Field;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Arrays;
|
|
|
import java.util.List;
|
|
|
|
|
|
import org.dom4j.Document;
|
|
|
import org.dom4j.DocumentException;
|
|
|
import org.dom4j.DocumentHelper;
|
|
|
import org.dom4j.Element;
|
|
|
import org.dom4j.io.OutputFormat;
|
|
|
import org.dom4j.io.SAXReader;
|
|
|
import org.dom4j.io.XMLWriter;
|
|
|
|
|
|
/**
|
|
|
* @<40><><EFBFBD><EFBFBD>
|
|
|
* @author chen
|
|
|
* @date 2016<31><36>8<EFBFBD><38>5<EFBFBD><35>
|
|
|
* @package com.base
|
|
|
*/
|
|
|
public class XmlOperationByDom4j {
|
|
|
|
|
|
/**
|
|
|
* @<40><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>xml<6D>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӽڵ㣩
|
|
|
* @param fileName
|
|
|
* <20>ļ<EFBFBD>·<EFBFBD><C2B7>+<2B><>
|
|
|
* @param params
|
|
|
* <20><>Ҫ<EFBFBD>Ľڵ<C4BD><DAB5><EFBFBD><EFBFBD><EFBFBD>
|
|
|
* @return true<75><65><EFBFBD>ɹ<EFBFBD>
|
|
|
*/
|
|
|
public static boolean createXml(String fileName, List<Object> nodes, String rootnode, String... filters) {
|
|
|
if (null == nodes || nodes.size() == 0) {
|
|
|
return false;
|
|
|
}
|
|
|
boolean issuccess = false;
|
|
|
Document document = null;
|
|
|
try {
|
|
|
OutputFormat xmlFormat = OutputFormat.createPrettyPrint();
|
|
|
xmlFormat.setEncoding("UTF-8");
|
|
|
XMLWriter xmlWriter;
|
|
|
// <20>ļ<EFBFBD><C4BC>Ƿ<EFBFBD><C7B7><EFBFBD>ڣ<EFBFBD>
|
|
|
document = DocumentHelper.createDocument(); // <20><><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD>
|
|
|
Element root = document.addElement(rootnode);
|
|
|
// <20><><EFBFBD> node<64><65><EFBFBD><EFBFBD><EFBFBD>ԣ<EFBFBD><D4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD><DAB5><EFBFBD>
|
|
|
for (Object node : nodes) {
|
|
|
addOneNode(root, node, filters);
|
|
|
}
|
|
|
xmlWriter = new XMLWriter(new OutputStreamWriter(new FileOutputStream(new File(fileName)), "UTF-8"),
|
|
|
xmlFormat);
|
|
|
// <20><><EFBFBD><EFBFBD>д<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
xmlWriter.write(document); // д<><D0B4><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>
|
|
|
xmlWriter.close();
|
|
|
issuccess = true;
|
|
|
} catch (Exception e) {
|
|
|
issuccess = false;
|
|
|
}
|
|
|
return issuccess;
|
|
|
}
|
|
|
|
|
|
public static boolean addNode2Xml(String fileName, String rootnode, List<Object> nodes) {
|
|
|
if (null == nodes || 0 ==nodes.size()) {
|
|
|
return false;
|
|
|
}
|
|
|
boolean issuccess = false;
|
|
|
Document document = null;
|
|
|
try {
|
|
|
OutputFormat xmlFormat = OutputFormat.createPrettyPrint();
|
|
|
xmlFormat.setEncoding("UTF-8");
|
|
|
XMLWriter xmlWriter;
|
|
|
File file = new File(fileName);
|
|
|
// <20>ļ<EFBFBD><C4BC>Ƿ<EFBFBD><C7B7><EFBFBD>ڣ<EFBFBD>
|
|
|
if (file.exists()) {
|
|
|
SAXReader saxReader = new SAXReader();
|
|
|
document = saxReader.read(file);
|
|
|
Element root = document.getRootElement(); // <20><>ȡ<EFBFBD>ĵ<EFBFBD><C4B5><EFBFBD><EFBFBD>ڵ<EFBFBD> Data_info
|
|
|
// <20><><EFBFBD> node<64><65><EFBFBD><EFBFBD><EFBFBD>ԣ<EFBFBD><D4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD><DAB5><EFBFBD>
|
|
|
for (Object node : nodes) {
|
|
|
addOneNode(root, node);
|
|
|
}
|
|
|
|
|
|
xmlWriter = new XMLWriter(new OutputStreamWriter(new FileOutputStream(file), "UTF-8"), xmlFormat);
|
|
|
}else {
|
|
|
return false;
|
|
|
}
|
|
|
xmlWriter.write(document); // д<><D0B4><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>
|
|
|
xmlWriter.close();
|
|
|
issuccess = true;
|
|
|
} catch (Exception e) {
|
|
|
issuccess = false;
|
|
|
}
|
|
|
return issuccess;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @<40><><EFBFBD><EFBFBD> ɾ<><C9BE><EFBFBD><EFBFBD><EFBFBD>нڵ<D0BD>
|
|
|
* @param fileName
|
|
|
* xml<6D>ļ<EFBFBD><C4BC><EFBFBD>·<EFBFBD><C2B7>
|
|
|
* @return
|
|
|
*/
|
|
|
public static boolean delAllNodes(String fileName) {
|
|
|
boolean issuccess = false;
|
|
|
OutputFormat xmlFormat = OutputFormat.createPrettyPrint();
|
|
|
xmlFormat.setEncoding("UTF-8");
|
|
|
XMLWriter xmlWriter;
|
|
|
File file = new File(fileName);
|
|
|
try {
|
|
|
if (file.exists()) {
|
|
|
SAXReader saxReader = new SAXReader();
|
|
|
Document document;
|
|
|
document = saxReader.read(file);
|
|
|
Element root = document.getRootElement(); // <20><>ȡ<EFBFBD>ĵ<EFBFBD><C4B5><EFBFBD><EFBFBD>ڵ<EFBFBD> Data_info
|
|
|
// <20><><EFBFBD> node<64><65><EFBFBD><EFBFBD><EFBFBD>ԣ<EFBFBD><D4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD><DAB5><EFBFBD>
|
|
|
@SuppressWarnings("unchecked")
|
|
|
List<Element> eles = root.elements();
|
|
|
for (Element obj : eles) {
|
|
|
root.remove(obj);
|
|
|
}
|
|
|
xmlWriter = new XMLWriter(new OutputStreamWriter(new FileOutputStream(file), "UTF-8"), xmlFormat);
|
|
|
xmlWriter.write(document); // д<><D0B4><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>
|
|
|
xmlWriter.close();
|
|
|
issuccess = true;
|
|
|
}
|
|
|
} catch (DocumentException | IOException e) {
|
|
|
issuccess = false;
|
|
|
}
|
|
|
return issuccess;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @<40><><EFBFBD><EFBFBD> <20>ڸ<EFBFBD><DAB8>ڵ<EFBFBD><DAB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD>ڵ<EFBFBD>
|
|
|
* @param root
|
|
|
* <20><><EFBFBD>ڵ<EFBFBD>
|
|
|
* @param node
|
|
|
* ij<><C4B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD><DAB5><EFBFBD><EFBFBD>ݵ<EFBFBD>ʵ<EFBFBD><CAB5>
|
|
|
* @throws IllegalArgumentException
|
|
|
* @throws IllegalAccessException
|
|
|
*/
|
|
|
private static void addOneNode(Element root, Object node, String... filters) throws IllegalArgumentException, IllegalAccessException {
|
|
|
List<String> filter = new ArrayList<String>();
|
|
|
filter.addAll(Arrays.asList(filters));
|
|
|
// <20><><EFBFBD>ڵ<EFBFBD>
|
|
|
Field[] params = node.getClass().getDeclaredFields();
|
|
|
Field rootField = null;
|
|
|
for (Field field : params) {
|
|
|
field.setAccessible(true);
|
|
|
if ("localNodeName".equals(field.getName())) {
|
|
|
rootField = field;
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
Element dataInfo = root.addElement((String) rootField.get(node));
|
|
|
// <20>ӽڵ<D3BD>
|
|
|
List<Field> noString = new ArrayList<Field>();
|
|
|
for (Field field : params) {
|
|
|
field.setAccessible(true);
|
|
|
String fName = field.getName();
|
|
|
if ("localNodeName".equals(fName)) {
|
|
|
continue;
|
|
|
}
|
|
|
if (filter.contains(fName)) {
|
|
|
continue;
|
|
|
}
|
|
|
//String <20><> Integer <20><><EFBFBD>͵<EFBFBD><CDB5><EFBFBD>ӽ<EFBFBD>ȥ
|
|
|
if (field.getType() != String.class) {
|
|
|
if (field.getType() != Integer.class) {
|
|
|
Element element = dataInfo.addElement(fName);
|
|
|
if (null != field.get(node)) {
|
|
|
element.setText(String.valueOf(field.get(node)));
|
|
|
}
|
|
|
}
|
|
|
else {
|
|
|
noString.add(field);
|
|
|
dataInfo.addElement(fName);
|
|
|
}
|
|
|
} else {
|
|
|
Element element = dataInfo.addElement(fName);
|
|
|
if (null != field.get(node)) {
|
|
|
element.setText((String) field.get(node));
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
}
|