1. 程式人生 > >java 檔案下載 檔名稱中文不顯示

java 檔案下載 檔名稱中文不顯示

String fileName = “檔名稱.doc”
try {
String fileName = new String(downFileName.getBytes(), “ISO-8859-1”);
response.setHeader(“Content-Disposition”, “attachment;fileName=”+ fileName);
} catch (UnsupportedEncodingException e1) {
response.setHeader(“Content-Disposition”, “attachment;fileName=”+ downFileName);
}

需要將帶有中文的檔案我名稱使用“ISO-8859-1”編碼。