为了账号安全,请及时绑定邮箱和手机立即绑定

下载文件时的文件名问题

下载文件时的文件名问题

慕姐4208626 2023-03-31 15:01:43
在边缘,我正在访问一个返回文件的 JSP 页面。它在 chrome 中完美运行,但在 Edge 和 Internet Explorer 中,我将 mime 类型附加到文件名。这是响应标头:Edge 要求我保存文件,文件名是persistenceIDs.xlsx.vnd.openxmlformats-officedocument.spreadsheetml.sheet有任何想法吗?
查看完整描述

1 回答

?
慕的地10843

TA贡献1785条经验 获得超8个赞

Str 包含文件名,如果需要,代码会更改它,否则就不要管它。


int second = -1;


 int first = str.indexOf(".");

   if (first>-1){

        second = str.indexOf(".", first + 1);

   }

   if (second>-1){

       str=str.substring(0, second);

   }


查看完整回答
反对 回复 2023-03-31
  • 1 回答
  • 0 关注
  • 104 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信