从jsp读取xml
假设我有一个 xml 文件“path.xml”,如下所示:
<paths>
<path id="first">
<url>http://blablabla</url>
</path>
<path id="second">
<url>http://blablabla</url>
</path>
</paths>
我有一个 jsp 文件,我想根据 id 从中读取 url。 例如: 我想在jsp文件中编写一些java代码,例如:String path =从xml文件获取“url”,其中path id =“second”。
这是如何在jsp中完成的?我对 jsp 中的 Dom 解析不太有经验,
非常感谢:)
lets say i have an xml file "path.xml" that goes like this:
<paths>
<path id="first">
<url>http://blablabla</url>
</path>
<path id="second">
<url>http://blablabla</url>
</path>
</paths>
i have a jsp file from which i want to read url based on the id.
for example:
i want to write in the jsp file some java code like:String path = get from xml file the "url", where path id = "second".
how is this done in jsp? i am not very experienced with Dom parsing in jsp
thanks a lot:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 XML 标签库
:
You could use XML Tag Library
:
首先,您不应该在 JSP 中编写 scriptlet 来执行这样的处理。它应该驻留在您的 Java 文件中,而不是 JSP 文件中。
要使用 Java 解析 XML,只需通过 Google 搜索即可找到大量示例。下面是帮助您入门的一个:http://www.java-tips.org/java-se-tips/javax.xml.parsers/how-to-read-xml-file-in-java.html
First off, you shouldn't be writing scriptlets in your JSP to perform a processing like this. That should reside in your Java file, not JSP file.
To parse XML with Java, there are tons of examples you will find by just Googling around. Here's one to get you started: http://www.java-tips.org/java-se-tips/javax.xml.parsers/how-to-read-xml-file-in-java.html