博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
struts2 下載 解決IE,火狐下載亂碼
阅读量:5925 次
发布时间:2019-06-19

本文共 1855 字,大约阅读时间需要 6 分钟。

hot3.png

one:

Struts.xml

<result name="success" type="stream"><!-- ;charset=UTF-8  ;charset=ISO-8859-1-->

    <param name="contentType">application/octet-stream</param>  
    <param name="contentDisposition">attachment;filename=${fileName}</param>
    <param name="inputName">fileinputstream</param>
    <param name="bufferSize">4096</param>
   </result>

two:

 private FileInputStream fileinputstream;

 private String fileName;

/**

  * 下载文件
  */
 public InputStream getFileinputstream(){
//  ServletActionContext.getResponse().setContentType("application/octet-stream;charset=UTF-8");
  try {

   String s=(String) Constants.SIDECODE_LIST[Constants.SIDECODE_IN_STATE][2];
   String url=this.getFileUrl().replace("", s);  //這裡你可以自己配置路徑

   fileinputstream = new FileInputStream(new File(url));
  } catch (Exception e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
  return fileinputstream;
 }

 public void setFileinputstream(FileInputStream fileinputstream) {

  this.fileinputstream = fileinputstream;
 }

/**

  * 防止IE,火狐乱码
  *
  */

 public String getFileName() {

  if(fileName!=null){
   try {
    HttpServletRequest request = ServletActionContext.getRequest();  
          String Agent = request.getHeader("User-Agent");  
          if (null != Agent) {  
              Agent = Agent.toLowerCase();  
              if (Agent.indexOf("firefox") != -1) {  
               fileName = new String(fileName.getBytes(),"ISO-8859-1");  
//               fileName = StringUtils.replace(fileName, " ", "%20");
              } else if (Agent.indexOf("msie") != -1) {  
               fileName = java.net.URLEncoder.encode(fileName,"UTF-8"); 
               fileName = StringUtils.replace(fileName, "+", "%20");
              } else {  
               fileName = java.net.URLEncoder.encode(fileName,"UTF-8");  
               fileName = StringUtils.replace(fileName, "+", "%20");
              }  
          } 

   } catch (Exception e) {

    // TODO Auto-generated catch block
    e.printStackTrace();
   } 
   return fileName;
  }
  return "";
 }
 public void setFileName(String fileName) {
  this.fileName = fileName;
 }

转载于:https://my.oschina.net/u/128179/blog/58188

你可能感兴趣的文章
《Apache Zookeeper 官方文档》-1简介
查看>>
恶补web之七:html DOM知识
查看>>
Linux备份ifcfg-eth0文件导致的网络故障问题
查看>>
第二天 web 笔记
查看>>
前端知识点总结——VUE
查看>>
2018年尾总结——稳中成长
查看>>
xampp下新增virtualhost出现access denied
查看>>
多IP主机用于挂协议挂游戏有什么好处!
查看>>
myisam和innodb区别
查看>>
C# 将字符串转换成×××、double或者date的代码
查看>>
成为高级大数据工程师的必备技能详解
查看>>
我要去做程序员,我吃得了苦
查看>>
科大讯飞,是时候考虑盈利问题了
查看>>
数字货币将对当前支付体系有什么积极的影响?
查看>>
区块链第三方支付平台:全球贸易发展先驱
查看>>
MySQL 存储过程
查看>>
我的友情链接
查看>>
windows server 2008 R2 AD 域之---IE安全设置
查看>>
PC 上的 LVM 灾难修复
查看>>
TimeRecordUtil 获取当前时间与开始时间差打印log
查看>>