- 博客(4)
- 资源 (1)
- 收藏
- 关注
转载 Dom4j递归遍历XML所有元素
做一个递归遍历XML的例子,为更为复杂的解析工作做基础。 目标:遍历所有的元素节点,并且取出来其中的值,结果打印到控制台。 源代码如下:本程序依赖DOM4j包。import org.dom4j.Document; import org.dom4j.DocumentHelper;
2011-07-10 01:25:47 1390
原创 controller中dao报nullPointerException
在学习spring mvc的时候,dao经测试无问题,问题:在helloController中,有个dao的接口(IHelloDao),使用了spring注入功能,这个接口有个setter方法,我尝试在这个set方法中打印这个接口的实现,以测试spring自动
2011-07-03 23:43:37 1168
原创 去除字符串中多个空格(正则表达式)
public static void main(String[] args) { String str = "nice to meet you!"; // String[] words = str.split("//s+"); String result = str.replaceAll("//s+", " "); System.out
2011-06-08 16:59:00 899 1
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人