我正在尝试将图像上传到服务器...使用 JSP
在 JSP 中:
input id="fileUpload" type="file" name="file"
在 Java 中:
File file = new File( request.getParameter("file"));
String path = file.getAbsolutePath();
BufferedImage sourceImage = ImageIO.read(new File(path));
ImageIO.write(sourceImage, "jpg", new File("E:/h.jpg"));
如果使用 Internet Explorer 上传图像,它可以工作......但在 chrome、Firefox 和 safari 浏览器中显示文件路径“fakepath/filename.jpg”并且图像无法读取。