插入图像的代码在HTML中有效,但在JSP中无效

时间:2018-11-07 10:28:51

标签: java html jsp

我使用以下代码在jsp页面(netbeans)中插入图像:

<div class="split0 top">
               <img align="center" src="C:/Users/pc/Desktop/Pictures/neosphere.png" alt="Missing Picture"/>
    </div>

该类如下代码所示:

.split0 {
height: 20%;
width: 100%;
position: fixed;
z-index: 1;
overflow-x: hidden;
padding-top: 20px;

}
.top{
    top: 0;
    left: 0;
    right:0;
    background-color: #488813;
}

此代码在那里不起作用,并且始终显示“缺少图片”。但是,当我使用以下代码创建简单的html页面(记事本)时,图像由浏览器显示。

<html>
<body>
<img align="center" src="C:/Users/pc/Desktop/Pictures/neosphere.png" alt="Missing Picture"/>
</body>
</html> 

在JSP页面中显示图像失败的原因可能是什么?

1 个答案:

答案 0 :(得分:0)

最后,我找到了这个问题的答案。看下面的代码:

Condition

此代码帮助我从本地计算机png文件将图像插入JSP页面。