文章列表
Log log = LogFactory.getLog(XmlOperation.class);
// 要解析的xml文件路径
private String path;
private Document document;
private Element element;
public XmlOperation(String path) {
try {
if (!Util.checkfile(path)) {
log.error("要解析的xml文件不存在" + path);
return;
}
this.path = p ...
- 2009-10-23 13:15
- 浏览 468
- 评论(0)