java创建.html或.text文件后中文乱码问题

今天碰到一个问题,在创建.html和.text时插入的中文全部乱码

现在解决了,贴下代码

这样写会使中文乱码>>应为没有指定字符编码

/**
      * 创建一个文件>>中文会乱码
      * @param content
      * @param path
      * @return
      */
     public static String CreateFile(String content,String path) {  
         byte[] b=content.getBytes();  
         BufferedOutputStream stream = null;  
         File file = null;  
         try {  
             file = new File(path);  
             FileOutputStream fstream = new FileOutputStream(file);  
             stream = new BufferedOutputStream(fstream);  
             stream.write(b);  
         } catch (Exception e) {  
             e.printStackTrace();  
         } finally {  
             if (stream != null) {  
                 try {  
                     stream.close();  
                 } catch (Exception e) {  
                     e.printStackTrace();  
                 }  
             }  
         }  
         return path;
     }

后改成>>>其中指定了utf-8就解决了

 /**
      * 创建一个文件>>>>解决中文乱码
      * @param content
      * @param path
      * @return
      */
     public static String CreateFiles(String content,String path) {   
         File file = null;  
         try {  
             file = new File(path);  
             BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), "UTF-8"));
             bw.write(content);
             bw.flush();
             bw.close();
         } catch (Exception e) {  
             e.printStackTrace();  
         }  
         return path;
     }

PS:在生成html时,在拼接代码的时候记得指定字符编码格式

 stringHTML.append("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">")
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值