update
This commit is contained in:
parent
588aa42057
commit
89f54fe408
|
|
@ -204,7 +204,7 @@ public class RedisCache<K, V> implements Cache<K, V>, Serializable {
|
|||
}
|
||||
}
|
||||
}
|
||||
return jedis;
|
||||
return this.jedis;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -1,353 +0,0 @@
|
|||
package com.smallchill.core.toolbox.kit;
|
||||
|
||||
import java.beans.XMLDecoder;
|
||||
import java.beans.XMLEncoder;
|
||||
import java.io.BufferedInputStream;
|
||||
import java.io.BufferedOutputStream;
|
||||
import java.io.BufferedWriter;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.StringWriter;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import javax.xml.parsers.DocumentBuilder;
|
||||
import javax.xml.parsers.DocumentBuilderFactory;
|
||||
import javax.xml.transform.OutputKeys;
|
||||
import javax.xml.transform.Source;
|
||||
import javax.xml.transform.Transformer;
|
||||
import javax.xml.transform.TransformerFactory;
|
||||
import javax.xml.transform.dom.DOMSource;
|
||||
import javax.xml.transform.stream.StreamResult;
|
||||
|
||||
import org.w3c.dom.Document;
|
||||
import org.w3c.dom.Element;
|
||||
import org.w3c.dom.NodeList;
|
||||
import org.xml.sax.InputSource;
|
||||
|
||||
import com.smallchill.core.exception.ToolBoxException;
|
||||
|
||||
/**
|
||||
* XML工具类<br>
|
||||
* 此工具使用w3c dom工具,不需要依赖第三方包。<br>
|
||||
*
|
||||
* @author xiaoleilu
|
||||
*
|
||||
*/
|
||||
public class XmlKit {
|
||||
|
||||
/** 在XML中无效的字符 正则 */
|
||||
public final static String INVALID_REGEX = "[\\x00-\\x08\\x0b-\\x0c\\x0e-\\x1f]";
|
||||
|
||||
// -------------------------------------------------------------------------------------- Read
|
||||
/**
|
||||
* 读取解析XML文件
|
||||
*
|
||||
* @param file XML文件
|
||||
* @return XML文档对象
|
||||
*/
|
||||
public static Document readXML(File file) {
|
||||
if (file == null) {
|
||||
throw new NullPointerException("Xml file is null !");
|
||||
}
|
||||
if (file.exists() == false) {
|
||||
throw new ToolBoxException("File [" + file.getAbsolutePath() + "] not a exist!");
|
||||
}
|
||||
if (file.isFile() == false) {
|
||||
throw new ToolBoxException("[" + file.getAbsolutePath() + "] not a file!");
|
||||
}
|
||||
|
||||
try {
|
||||
file = file.getCanonicalFile();
|
||||
} catch (IOException e) {
|
||||
}
|
||||
|
||||
final DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
|
||||
try {
|
||||
final DocumentBuilder builder = dbf.newDocumentBuilder();
|
||||
return builder.parse(file);
|
||||
} catch (Exception e) {
|
||||
throw new ToolBoxException("Parse xml file [" + file.getAbsolutePath() + "] error!", e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 读取解析XML文件
|
||||
*
|
||||
* @param absoluteFilePath XML文件绝对路径
|
||||
* @return XML文档对象
|
||||
*/
|
||||
public static Document readXML(String absoluteFilePath) {
|
||||
return readXML(new File(absoluteFilePath));
|
||||
}
|
||||
|
||||
/**
|
||||
* 将String类型的XML转换为XML文档
|
||||
*
|
||||
* @param xmlStr XML字符串
|
||||
* @return XML文档
|
||||
*/
|
||||
public static Document parseXml(String xmlStr) {
|
||||
if (StrKit.isBlank(xmlStr)) {
|
||||
throw new ToolBoxException("Xml content string is empty !");
|
||||
}
|
||||
xmlStr = cleanInvalid(xmlStr);
|
||||
|
||||
final DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
|
||||
try {
|
||||
final DocumentBuilder builder = dbf.newDocumentBuilder();
|
||||
return builder.parse(new InputSource(StrKit.getReader(xmlStr)));
|
||||
} catch (Exception e) {
|
||||
throw new ToolBoxException("Parse xml file [" + xmlStr + "] error!", e);
|
||||
}
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------------------- Write
|
||||
/**
|
||||
* 将XML文档转换为String
|
||||
*
|
||||
* @param doc XML文档
|
||||
* @return XML字符串
|
||||
*/
|
||||
public static String toStr(Document doc) {
|
||||
return toStr(doc, CharsetKit.UTF_8);
|
||||
}
|
||||
|
||||
/**
|
||||
* 将XML文档转换为String<br>
|
||||
* 此方法会修改Document中的字符集
|
||||
*
|
||||
* @param doc XML文档
|
||||
* @param charset 自定义XML的字符集
|
||||
* @return XML字符串
|
||||
*/
|
||||
public static String toStr(Document doc, String charset) {
|
||||
try {
|
||||
StringWriter writer = StrKit.getWriter();
|
||||
|
||||
final Transformer xformer = TransformerFactory.newInstance().newTransformer();
|
||||
xformer.setOutputProperty(OutputKeys.ENCODING, charset);
|
||||
xformer.setOutputProperty(OutputKeys.INDENT, "yes");
|
||||
xformer.transform(new DOMSource(doc), new StreamResult(writer));
|
||||
|
||||
return writer.toString();
|
||||
} catch (Exception e) {
|
||||
throw new ToolBoxException("Trans xml document to string error!", e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 将XML文档写入到文件<br>
|
||||
* 使用Document中的编码
|
||||
*
|
||||
* @param doc XML文档
|
||||
* @param absolutePath 文件绝对路径,不存在会自动创建
|
||||
*/
|
||||
public static void toFile(Document doc, String absolutePath) {
|
||||
toFile(doc, absolutePath, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* 将XML文档写入到文件<br>
|
||||
*
|
||||
* @param doc XML文档
|
||||
* @param absolutePath 文件绝对路径,不存在会自动创建
|
||||
* @param charset 自定义XML文件的编码
|
||||
*/
|
||||
public static void toFile(Document doc, String absolutePath, String charset) {
|
||||
if (StrKit.isBlank(charset)) {
|
||||
charset = doc.getXmlEncoding();
|
||||
}
|
||||
if (StrKit.isBlank(charset)) {
|
||||
charset = CharsetKit.UTF_8;
|
||||
}
|
||||
|
||||
BufferedWriter writer = null;
|
||||
try {
|
||||
writer = FileKit.getWriter(absolutePath, charset, false);
|
||||
Source source = new DOMSource(doc);
|
||||
final Transformer xformer = TransformerFactory.newInstance().newTransformer();
|
||||
xformer.setOutputProperty(OutputKeys.ENCODING, charset);
|
||||
xformer.setOutputProperty(OutputKeys.INDENT, "yes");
|
||||
xformer.transform(source, new StreamResult(writer));
|
||||
} catch (Exception e) {
|
||||
throw new ToolBoxException("Trans xml document to string error!", e);
|
||||
} finally {
|
||||
IoKit.close(writer);
|
||||
}
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------------------- Create
|
||||
/**
|
||||
* 创建XML文档<br>
|
||||
* 创建的XML默认是utf8编码,修改编码的过程是在toStr和toFile方法里,既XML在转为文本的时候才定义编码
|
||||
*
|
||||
* @param rootElementName 根节点名称
|
||||
* @return XML文档
|
||||
*/
|
||||
public static Document createXml(String rootElementName) {
|
||||
final DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
|
||||
DocumentBuilder builder = null;
|
||||
try {
|
||||
builder = dbf.newDocumentBuilder();
|
||||
} catch (Exception e) {
|
||||
throw new ToolBoxException("Create xml document error!", e);
|
||||
}
|
||||
Document doc = builder.newDocument();
|
||||
doc.appendChild(doc.createElement(rootElementName));
|
||||
|
||||
return doc;
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------------------- Function
|
||||
/**
|
||||
* 去除XML文本中的无效字符
|
||||
*
|
||||
* @param xmlContent XML文本
|
||||
* @return 当传入为null时返回null
|
||||
*/
|
||||
public static String cleanInvalid(String xmlContent) {
|
||||
if (xmlContent == null) return null;
|
||||
return xmlContent.replaceAll(INVALID_REGEX, "");
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据节点名获得子节点列表
|
||||
*
|
||||
* @param element 节点
|
||||
* @param tagName 节点名
|
||||
* @return 节点列表
|
||||
*/
|
||||
public static List<Element> getElements(Element element, String tagName) {
|
||||
final NodeList nodeList = element.getElementsByTagName(tagName);
|
||||
return transElements(element, nodeList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据节点名获得第一个子节点
|
||||
*
|
||||
* @param element 节点
|
||||
* @param tagName 节点名
|
||||
* @return 节点
|
||||
*/
|
||||
public static Element getElement(Element element, String tagName) {
|
||||
final NodeList nodeList = element.getElementsByTagName(tagName);
|
||||
if (nodeList == null || nodeList.getLength() < 1) {
|
||||
return null;
|
||||
}
|
||||
int length = nodeList.getLength();
|
||||
for (int i = 0; i < length; i++) {
|
||||
Element childEle = (Element) nodeList.item(i);
|
||||
if (childEle == null || childEle.getParentNode() == element) {
|
||||
return childEle;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据节点名获得第一个子节点
|
||||
*
|
||||
* @param element 节点
|
||||
* @param tagName 节点名
|
||||
* @return 节点中的值
|
||||
*/
|
||||
public static String elementText(Element element, String tagName) {
|
||||
Element child = getElement(element, tagName);
|
||||
return child == null ? null : child.getTextContent();
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据节点名获得第一个子节点
|
||||
*
|
||||
* @param element 节点
|
||||
* @param tagName 节点名
|
||||
* @return 节点中的值
|
||||
*/
|
||||
public static String elementText(Element element, String tagName, String defaultValue) {
|
||||
Element child = getElement(element, tagName);
|
||||
return child == null ? defaultValue : child.getTextContent();
|
||||
}
|
||||
|
||||
/**
|
||||
* 将NodeList转换为Element列表
|
||||
*
|
||||
* @param nodeList NodeList
|
||||
* @return Element列表
|
||||
*/
|
||||
public static List<Element> transElements(NodeList nodeList) {
|
||||
return transElements(null, nodeList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 将NodeList转换为Element列表
|
||||
*
|
||||
* @param parentEle 父节点,如果指定将返回此节点的所有直接子节点,nul返回所有就节点
|
||||
* @param nodeList NodeList
|
||||
* @return Element列表
|
||||
*/
|
||||
public static List<Element> transElements(Element parentEle, NodeList nodeList) {
|
||||
final ArrayList<Element> elements = new ArrayList<Element>();
|
||||
int length = nodeList.getLength();
|
||||
for (int i = 0; i < length; i++) {
|
||||
Element element = (Element) nodeList.item(i);
|
||||
if (parentEle == null || element.getParentNode() == parentEle) {
|
||||
elements.add(element);
|
||||
}
|
||||
}
|
||||
|
||||
return elements;
|
||||
}
|
||||
|
||||
/**
|
||||
* 将可序列化的对象转换为XML写入文件,已经存在的文件将被覆盖<br>
|
||||
* Writes serializable object to a XML file. Existing file will be overwritten
|
||||
* @param <T>
|
||||
* @param dest 目标文件
|
||||
* @param t 对象
|
||||
* @throws IOException
|
||||
*/
|
||||
public static <T> void writeObjectAsXml(File dest, T t) throws IOException {
|
||||
FileOutputStream fos = null;
|
||||
XMLEncoder xmlenc = null;
|
||||
try {
|
||||
fos = new FileOutputStream(dest);
|
||||
xmlenc = new XMLEncoder(new BufferedOutputStream(fos));
|
||||
xmlenc.writeObject(t);
|
||||
} finally {
|
||||
IoKit.close(fos);
|
||||
if (xmlenc != null) {
|
||||
xmlenc.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 从XML中读取对象
|
||||
* Reads serialized object from the XML file.
|
||||
* @param <T>
|
||||
* @param source XML文件
|
||||
* @return 对象
|
||||
* @throws IOException
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> T readObjectFromXml(File source) throws IOException {
|
||||
Object result = null;
|
||||
FileInputStream fis = null;
|
||||
XMLDecoder xmldec = null;
|
||||
try {
|
||||
fis = new FileInputStream(source);
|
||||
xmldec = new XMLDecoder(new BufferedInputStream(fis));
|
||||
result = xmldec.readObject();
|
||||
} finally {
|
||||
IoKit.close(fis);
|
||||
if (xmldec != null) {
|
||||
xmldec.close();
|
||||
}
|
||||
}
|
||||
return (T) result;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user