js下载文件并修改文件名
程序员文章站
2022-06-29 21:21:56
用js下载文件,使用<a>标签,添加download属性即可。
var a = document.createelement("a"); a.href = "http://xxx.com/audiostream/8a9dbae9d0859e48fc1f590fcf6d4ccc.mp3"; a.download ="test.mp3"; a.click();
但是如果想给文件重新命名,貌似js无法实现。
因此考虑后台实现,用java代理请求,获取文件设置文件名,返回到前端。
public void downfiles(httpservletresponse response,string url,string workinfoid,int type){ try{ string prefix = type == 1 ? "wav" : "txt"; url = type == 1 ? url : (url + "?textinfoid="+workinfoid); httpentity entity = request.get(url). execute().returnresponse().getentity(); byte[] bys = entityutils.tobytearray(entity); //获取作品名称 works works = this.worksdao.findbyworkid(workinfoid); string name = (works!=null && stringutils.isnotblank(works.getname())) ? works.getname() : long.tostring(new date().gettime()); response.setheader("content-disposition", "attachment; filename="+ new string(name.getbytes("utf-8"), "iso-8859-1")+"."+prefix); outputstream out = response.getoutputstream(); out.write(bys); out.close(); }catch (exception e){ e.printstacktrace(); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。