我想在计算机上显示来自我本地位置的图像,我使用这个代码,它对我来说很好,
<%@ page import="java.io.*" %>
<%@page contentType="image/gif" %>
<%
OutputStream o = response.getOutputStream();
InputStream is = new FileInputStream(new File("D:/FTP/ECG/ecg.jpg"));
byte[] buf = new byte[32 * 1024];
int nRead = 0;
while( (nRead=is.read(buf)) != -1 )
{
o.write(buf, 0, nRead);
}
o.flush();
o.close();
%>
我的问题是我想用它来显示内容,还有其他的东西,比如输入框和标签。