jsp上传用smartupload,网上到处都是。
下载的代码:
File file = new File("你的图片的路径");
FileInputStream is = new FileInputStream(file);
byte[] buffer = new byte[file.length()];
is.read(buffer);
OutputStream os = response.getOutputStream();
os.write(buffer);
is.close();
os.close();