public void setElementValue(String nodeName, String childNodeName,
String nodeValue) {
try {
Node node = this.document.selectSingleNode("http://" + nodeName + "/" + childNodeName);
node.setText(nodeValue);
}
catch (Exception e1) {
System.out.println("setElementValue() Exception:" + e1.getMessage());
}
}
}
簡單封裝后,可以用來讀寫XML文檔,對網(wǎng)站進行配置:如指定頁面整體風格的css文件,在context init 時讀取存入context中,在頁面中通過讀取context中的相應屬性來確定css文件名,完成一項配置,其它的動態(tài)配置都類似;
public class BListener extends HttpServlet implements ServletContextListener, ServletContextAttributeListener, HttpSessionListener, HttpSessionAttributeListener {
private static String XML_FILE_PATH = "c:/test.xml";
//Notification that the web application is ready to process requests
public void contextInitialized(ServletContextEvent sce) {
BDom4j xmlmng = new BDom4j(XML_FILE_PATH);
xmlmng.openXML();
sce.getServletContext().setAttribute("css",xmlmng.getElementValue("style-sheet"));
System.out.println("### context initialized...");
}
相關推薦:北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |