0

我已成功将我的图像上传到 c:/images 如何上传到我的根文件夹中?

String fileName = getFileName(filePart);
                          FileOutputStream os = new FileOutputStream("C:/images" + fileName);
                          os.write(b);
4

1 回答 1

3

可以ServletContext.getRealPath(relativePath)用来获取文件的真实路径。

String relativePath="/images/" + fileName;
String realPath=getServletContext().getRealPath(relativePath);
FileOutputStream stream=new FileOutputStream(realPath);
于 2012-08-10T07:51:57.853 回答