用jsp显示图像

发布于 2024-10-19 00:31:48 字数 1144 浏览 1 评论 0原文

我想借助给定代码

images.jsp

<%@ page contentType="text/html"%>
<%@ pageimport="javax.xml.parsers.DocumentBuilderFactory,javax.xml.parsers.DocumentBuilder,org.w3c.dom.*"
%>
<html>
<body><center><table border="2">
<%DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse("\\file1.XML");
NodeList pic1= doc.getElementsByTagName("pic1");
NodeList pic2= doc.getElementsByTagName("pic2");
%>


 <tr><td>
 <img  border="2" src=<%= pic1.item(0).getFirstChild().getNodeValue() %> width="137" height="140"></td>
<td>
 <img  border="2" src=<%= pic2.item(0).getFirstChild().getNodeValue() %> width="137"  height="140">
</td>
 </tr>
 </table>
 </center>
</body>
</html>

file1.xml

<?xml version="1.0" encoding="UTF-8"?>
 <images>
 <pic1>BULDHANA.jpg</pic1>
 <pic2>BULDHANA.jpg</pic2>

 </images>

在浏览器中显示图像,但它不显示图像。问题出在哪里。我该如何解决它???

i want to display image at browser with help of given code

images.jsp

<%@ page contentType="text/html"%>
<%@ pageimport="javax.xml.parsers.DocumentBuilderFactory,javax.xml.parsers.DocumentBuilder,org.w3c.dom.*"
%>
<html>
<body><center><table border="2">
<%DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse("\\file1.XML");
NodeList pic1= doc.getElementsByTagName("pic1");
NodeList pic2= doc.getElementsByTagName("pic2");
%>


 <tr><td>
 <img  border="2" src=<%= pic1.item(0).getFirstChild().getNodeValue() %> width="137" height="140"></td>
<td>
 <img  border="2" src=<%= pic2.item(0).getFirstChild().getNodeValue() %> width="137"  height="140">
</td>
 </tr>
 </table>
 </center>
</body>
</html>

file1.xml

<?xml version="1.0" encoding="UTF-8"?>
 <images>
 <pic1>BULDHANA.jpg</pic1>
 <pic2>BULDHANA.jpg</pic2>

 </images>

but it is not display images. Where is the problem. How can i resolve it???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

她说她爱他 2024-10-26 00:31:49

检查浏览器上呈现的 HTML 检查 img 标记,它的 src 属性是什么? ,它应该是什么?

更新:

您的目录结构应该类似于

处的 jsp 文件

C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\SampleApp\1.jsp

中的图像文件

C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\SampleApp\images\1.jpg

我的浏览器地址栏

http://localhost:8080/SampleApp/1.jsp

HTML 代码

<img src="images/1.jpg"/>

Check HTML rendered on browser check for img tag whats its src attribute?? , and what it should be ??

Update:

Your dir structure should be like this

jsp file at

C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\SampleApp\1.jsp

image file at

C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\SampleApp\images\1.jpg

in my browser address bar

http://localhost:8080/SampleApp/1.jsp

HTML code

<img src="images/1.jpg"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文