Struts2 下载 中文 文件名 的文件

在需要下载中文时可以使用StreamResult来完成,以下是摘自该类的JavaDoc的对参数的说明:
引用

contentType - the stream mime-type as sent to the web browser(default = text/plain).
contentLength - the stream length in bytes (the browser displays aprogress bar).
contentDisposition - the content disposition header value forspecifing the file name (default = inline, values are typicallyfilename="document.pdf".
inputName - the name of the InputStream property from the chainedaction (default = inputStream).
bufferSize - the size of the buffer to copy from input to output(default = 1024).



其中,要下载的文件是什么,需要设置相应的contentType,如需要下载Excel要设置成"application/vnd.ms-excel",要下载word文档需要设置成"application/msword",而下载TXT文档只需要设置成"text/plain",其它PDF什么的也都有对应的值,请大家补充吧。

这里只说一下出现中文文件名如何处理,这需要使用到contentDisposition参数,在我们现在的代码中很多是直接写了个英文名在配置文件中,这样当然没有问题,但是如果文件名是动态生成的,而且会是中文如何处理呢?这需要在相应的Action中做如下的处理:


除了在Action中处理ImputStream类型的属性外,再增加一个String类型的Filename属性(可以按需求取相应的名称)。
在处理逻辑中设置Filename的值,但是在设置完成后一定要将它转换为ISO8859-1的编码,如
this.exportFilename = new String(this.exportFilename.getBytes(), "ISO8859-1"); 




在配置文件中这样设置:
<param name="contentDisposition">attachment;filename="${exportFilename}"</param> 


我对struts.xml不是很熟,可能大家已经知道了类似${name}这样的用法,通过这样可以引用Action中的属性信息。这样配置后,就可以下载中文文件名的文件了。

另外,在这里,对contentDisposition多说两句,现在我们要下载文件,使用的是attachment,这里还可以设置的一个参数是inline,它会直接在浏览器中显示下传的内容。

你可能感兴趣的:(xml,Web,浏览器,struts,Excel)