日期:2014-05-16 浏览次数:20382 次
String contentType = ...;
try {
filename = MimeUtility.encodeText(filename, "UTF-8", "B");
} catch (UnsupportedEncodingException e) {
// ingore
}
response.setContentType(contentType);
response.setHeader("Content-disposition","attachment; filename=" + filename);