`

下载csv 文件中文不乱码

阅读更多

String  helloString ="姓名,年龄  \n李亚希,33";
		 response.setContentType("application/x-download");  
		 String filedisplay =  "hello" + ".csv";
		 response.addHeader("Content-Disposition", "attachment;filename="  
		         + filedisplay);  
		 try {  
		     OutputStream out = response.getOutputStream();    //OutputStreamWriter write = new OutputStreamWriter(out , "utf-8");  
OutputStreamWriter write = new OutputStreamWriter(out , "gb2312");  
		   
		     write.write(helloString);  
		     write.close();
 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics