Tomcat使用jsp解析xml文件并在浏览…

    当时选在新浪建博客我就是个臭傻逼,一点都不好用,刚刚写好的记录全没了,连图片都插不进去,现在又要写过,好心情全被破坏光了,算了不吐槽了。
     http://blog.sina.com.cn/s/blog_7860b1c30101e2xm.html这里已经讲了如何配置Tomcat,值得注意的就是环境变量与自己Tomcat存放的文件目录有关,我存放在了E盘。
    所有的Tomcat应用都是存放在E:\MyEclipse\apache-tomcat-7.0.6\ webapps目录下,每个应用最好都建立一个文件夹,相关文件放在文件夹中,我把文件放在E:\MyEclipse\apache-tomcat-7.0.6\webapps\AppXmlRead。文件有read.jsp,room.xml和一个WEB-INF文件夹(里面放着web.xml),WEB-INF文件夹自己拷贝一个就可以了,前两个文件才是要自己写的。
Tomcat使用jsp解析xml文件并在浏览器上显示

    read.jsp(写完存储成txt,把后缀名再改为jsp即可):
<%@ page language="java" import="javax.xml.parsers.*,org.w3c.dom.*" pageEncoding="utf-8"%>
XMLRead

<%
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document d = db.parse(request.getRealPath("room.xml"));//建立Document对象,并设置文件路径参数
Element e = d.getDocumentElement();//取得代表整个XML文件内容的元素对象
NodeList nl = e.getElementsByTagName_r("room");//从XML元素当中萃取出所有包含名称为customer的节点集合对象NodeList
//依次将节点集合当中的元素并逐一取出显示在页面上
for (int i = 0; i < nl.getLength(); i++) {
Element childElement = (Element) nl.item(i);//取得目前索引位置的元素
NodeList childNodeList = null;
String outString = "";
//取得此元素底下的所有节点集合
childNodeList = childElement.getElementsByTagName_r("weekday");
outString = childNodeList.item(0).getFirstChild().getNodeValue();
out.println("weekday:" + outString + "
");
childNodeList = childElement.getElementsByTagName_r("place");
outString = childNodeList.item(0).getFirstChild().getNodeValue();
out.println("place:" + outString + "
");
childNodeList = childElement.getElementsByTagName_r("time");
outString = childNodeList.item(0).getFirstChild().getNodeValue();
out.println("time:" + outString + "
");
childNodeList = childElement.getElementsByTagName_r("class");
outString = childNodeList.item(0).getFirstChild().getNodeValue();
out.println("class:" + outString + "
");
out.println("

");

}
%>

   room.xml(写完存储成txt,把后缀名再改为xml即可):

<空闲自习室数据>
 
    1
    0
   
    1-109
 
 
    1
    3
   
    4-309
 


    web.xml:

  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                      http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
  version="3.0"
  metadata-complete="true">  


    之后启动Tomcat,在浏览器输入 http://localhost:8080/AppXmlRead/read.jsp就会显示出结果(Tomcat中只要写应用文件夹和相应文件地址即可,它会自动到webapps文件夹中去找AppXmlRead,再去找read.jsp),结果如下图所示。
Tomcat使用jsp解析xml文件并在浏览器上显示

你可能感兴趣的:(Android)