我有一个托管在 jelastic.com 上的 Web 应用程序。我使用路径将图像上传到服务器的主目录/opt/glassfish3/temp
。代码如下:
FileOutputStream fos = new FileOutputStream("/opt/glassfish3/temp/" + fileName);
fos.write(uploadedFile.getContents());
fos.flush();
fos.close();
我正在使用图像标签来显示图像文件,但它给了我一个损坏的图像。html代码如下:
<img src="/opt/glassfish3/temp/${sessionScope['userdet']['image']}" width="200px" ></img>