Java:如何在前台显示"另存为"对话框,然后后台获取用户选择的路径呢?

求解... 求解 展开
 我来答
圣书艺0G7
2014-03-25
知道答主
回答量:2
采纳率:0%
帮助的人:4.7万
展开全部
你具体指的是JSP吧,其实关于另存对话框显示是浏览器自行决定的,即:一个url的跳转如果浏览器检测到这个url指向的是一个文件流那么就会显出另存为的对话框。具体的方式时前台一个 超链接<a href="url">,url指向后台的servlet(struts对应action,等其他的业务逻辑)。而后台的实现方式:把文件流输出到reponse的输出流中。具体代码为:
public static void downloadFile(HttpServletResponse response,InputStream in,String sFileName)
{
java.io.OutputStream toClient = null;
try
{
// 清空response
response.reset();
// 设置response的Header
response.setContentType("application/octet-stream");
response.addHeader("Content-Disposition", "attachment;filename=" + new String(sFileName.getBytes("iso-8859-1")));
//response.addHeader("Content-Length", "" + file.length());
toClient = new BufferedOutputStream(response.getOutputStream());

byte[] buffer = new byte[2 * 1024];
int iReadLen;
while(-1 != (iReadLen = in.read(buffer)))
{
toClient.write(buffer, 0, iReadLen);
}

toClient.flush();
} catch (Exception e)
{
logger.error(null, e);
}finally
{
IOUtils.closeQuietly(toClient);
}

}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式