首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

上载csv 文件中文不乱码

2012-09-17 
下载csv 文件中文不乱码StringhelloString 姓名,年龄\n李亚希,33 response.setContentType(applicati

下载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();
 

热点排行