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文檔,對(duì)網(wǎng)站進(jìn)行配置:如指定頁面整體風(fēng)格的css文件,在context init 時(shí)讀取存入context中,在頁面中通過讀取context中的相應(yīng)屬性來確定css文件名,完成一項(xiàng)配置,其它的動(dòng)態(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...");
}
相關(guān)推薦:計(jì)算機(jī)等級(jí)考試二級(jí)Java經(jīng)典算法大全匯總
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |