Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 config.xml 中设置了以下内容,如何读取标签之间的属性值?我需要从jsp读取它。
<page-metrics> <metric page="test.page"> <type default="true" name="test"> <name>My Test Page</name> </type> </metric> </page-metrics>
如果您需要解析 XML 文件,则应在服务层中完成。例如,您可以使用 DOM 解析器、SAX 解析器或任何其他解析器来解析 XML。