
xml
zhangmiao12
这个作者很懒,什么都没留下…
展开
-
保存xml文档
xml 文件 放在 web-inf下的 classes目录下 private static String webInfoPath = "config.xml"; /** * 保存XML文档 * * @param doc * @throws IOException */ public static void saveDocument(Document...原创 2011-04-22 10:44:27 · 122 阅读 · 0 评论 -
读取更改xml文件
Document document = null; document = DocumentHelper.parseText(response); Element root = document.getRootElement(); Element node = root.element("server"); String result = nod...原创 2011-04-22 10:49:29 · 109 阅读 · 0 评论 -
doFilter如何使用
我来给你简单的说一下吧:)首先要明确。Filter是JSP2.0里面的东西 ,顾名思义,也就是过滤器的意思和你说说如何用吧。要用Filter就得在web.xml中配置例://配置方法和配置普通的Servlet一样的哦<filter> <filter-name>PrivFilter</filter-name> <filter-class&...原创 2011-06-02 17:45:07 · 350 阅读 · 0 评论