文章列表
dom4j 常用技巧
- 博客分类:
- xml
XML 的dom4j 是在处理xml 文件中常用的open source,以下记录一些常用的技巧
1. 合并多个XML
SAXReader saxReader = new SAXReader();
Document a = saxReader.read(new File("g:\\taskChain.xml"));
Document b = saxReader.read(new File("g:\\taskChain2.xml"));
List<Element> elemen ...
最近做个一个项目 需要在规定时间结束一个进程, 这个进程有个特殊当收到标准输入ctrl+c,会做些特殊处理才会退出进程。 原来用kill -9 ,结果进程直接退出。 后来改用kill -2 才解决问题
Hudson教程系列
Hudson持续集成教程1:http://jdonee.iteye.com/blog/310497
Hudson持续集成教程2:http://jdonee.iteye.com/blog/310816
Hudson持续集成教程3:http://jdonee.iteye.com/blog/311130
Hudson持续集成教程4:http://jdonee.iteye.com/blog/311401
Hudson持续 ...
Staf Java 接口 编程Step1: 创建STAFHandle
STAFHandle handle = new STAFHandle("MyApplication");
Step 2:
组建命令然后提交
String machine = this.ip;
STAFResult result = handle.submit2(machine, service, request);
String service = "PROCESS";
String request = " ...