在我的项目中,我需要在我的 JSP 中使用XSLT来解析 XML。这是我的 JSP 代码:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Edited by XMLSpy® -->
<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<body style="font-family:Arial;font-size:12pt;background-color:#EEEEEE">
<h1>Hi, <xsl:value-of select="'welcome user'"/></h1>
</body>
</html>
尽管我已经包含了命名空间,但我没有在这里获得 XSL 值。
我需要在我的应用程序中进行“xml 转换”吗?任何人都可以检查可能是什么问题?