java web 怎么从服务器下载文件到客户端的指定位置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java web 怎么从服务器下载文件到客户端的指定位置相关的知识,希望对你有一定的参考价值。

就是从服务器下载文件到客户端的指定的位置
源代码 解决后加分

参考技术A

我脚得的吧,这应该是浏览器考虑的问题吧,比如谷歌浏览器,就有这么一个配置:

参考技术B 这个很简单啊,就是定义一个input file类型的,然后上传,获取上传的文件,用inputstream读取,然后用outputstream写入到你服务器的指定位置就行了。如果用struts来接收上传文件就简单了,只需要命名和jsp文件input file类型名称相同的字段就能获取上传文件了,file类型的。
/** 新闻代表图片 */
private File newsPicture;//文件字段和jsp 中文件name相同
private String newsPictureFileName;//文件名称,可以自动获取
private String newsPictureContentType;//文件类型,可以自动判断

//上传的共用方法,srcFile源文件,savePath保存的路径,fileName文件名称,你使用这个方法就可以上传了。
public static File uploadUtil(File srcFile,String savePath,String FileName)
InputStream is = null;
OutputStream os = null;
File toFile = null;
if(srcFile!=null)
try
is = new FileInputStream(srcFile);
String fileName = (new Date().getTime())+FileName.substring(FileName.indexOf("."));
toFile = new File(ServletActionContext.getServletContext().getRealPath(savePath), fileName);
os = new FileOutputStream(toFile);
byte[] buffer = new byte[1024];
int length = 0;
while ((length = is.read(buffer)) > 0)
os.write(buffer, 0, length);

os.flush();
catch (FileNotFoundException e)
e.printStackTrace();
catch (IOException e)
e.printStackTrace();
finally
try
is.close();
os.close();
catch (IOException e)
e.printStackTrace();




return toFile;
追问

当加载一个JSP页面的时候从服务器下载文件 到客户端怎么实现

追答

下载要稍微麻烦一点:需要配置struts.xml配置流,需要
1、

2、在需要下载的action中

application/octet-stream;charset=ISO8859-1//字符集,必须转换成ISO文件名才正确
attachment;filename="$fileRealName"//下载名为filename中的值
downloadFile

3、下载方法需要该方法
public InputStream getDownloadFile() throws Exception

this.setFileName(fileName);
String name = this.getFileRealName();
String realPath = "/upload/"+name;
InputStream in = ServletActionContext.getServletContext().getResourceAsStream(realPath);
return in;

4、页面需要下载列表
$uploadFiles.filename网上有很多资源,你多看下就能懂

本回答被提问者和网友采纳
参考技术C 程序要在客户端运行,使用HttpClient下载,apache官网有例子、有文档追问

web 程序要在服务端运行,怎么从服务端下载文件到客户端的指定位置

追答

写WEB,服务器端是没有权限直接访问客户端的本地资源的———除非客户端的权限全开放了,那写applet可以。

以上是关于java web 怎么从服务器下载文件到客户端的指定位置的主要内容,如果未能解决你的问题,请参考以下文章

java怎么把excel文件导入到web网页上显示

java如何实现从服务器下载已经生成好的excel文件

JavaWeb之实现文件上传与下载

将文件从 REST Web 服务发送到客户端的正确方法是啥?

绝对高分求客户端向服务器上传与下载文件的程序

使用java如何获取服务器返回的js文件内容,最好可以获取指定文字后的内容。