gpt4 book ai didi

Java读写.properties文件解决中文乱码问题

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 24 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Java读写.properties文件解决中文乱码问题由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

一般使用到properties配置文件,一般都是在spring项目里面,直接由框架帮你读,当然,你也得考虑到编码的问题.

但是现在要是要求使用java直接读写properties文件,就发现很多的问题,比如,我的properties文件的编码竟然不是utf-8的。或者说我压根就没考虑到这个问题.

再比如,当properties文件里面有汉子的时候,发现读写的汉字乱码了,在我这是因为我的电脑默认编码是gbk,但是读的时候,又没有设置编码,搞出的问题.

下面直接上代码,看问题.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.lxk.propertyfiletest;
 
import java.io.*;
import java.util.properties;
 
/**
  * 读写properties文件测试
  * <p>
  * created by lxk on 2017/4/25
  */
public class main {
   public static void main(string[] args) {
     properties prop = new properties();
     inputstream in = null ;
     fileoutputstream ofile = null ;
     try {
       in = new bufferedinputstream( new fileinputstream( "d:config.properties" ));
       //prop.load(in);//直接这么写,如果properties文件中有汉子,则汉字会乱码。因为未设置编码格式。
       prop.load( new inputstreamreader(in, "utf-8" ));
       for (string key : prop.stringpropertynames()) {
         system.out.println(key + ":" + prop.getproperty(key));
       }
       //保存属性到b.properties文件
       ofile = new fileoutputstream( "b.properties" , false ); //true表示追加打开,false每次都是清空再重写
 
       prop.setproperty( "phone" , "10086" );
       //prop.store(ofile, "此参数是保存生成properties文件中第一行的注释说明文字");//这个会两个地方乱码
       //prop.store(new outputstreamwriter(ofile, "utf-8"), "汉字乱码");//这个就是生成的properties文件中第一行的注释文字乱码
       prop.store( new outputstreamwriter(ofile, "utf-8" ), "lll" );
     } catch (exception e) {
       system.out.println(e.getmessage());
     } finally {
       if (in != null ) {
         try {
           in.close();
         } catch (ioexception e) {
           system.out.println(e.getmessage());
         }
       }
       if (ofile != null ) {
         try {
           ofile.close();
         } catch (ioexception e) {
           system.out.println(e.getmessage());
         }
       }
     }
   }
}

运行结果:这个只是读出来的内容的结果.

Java读写.properties文件解决中文乱码问题

下面是写出来的文件内容.

Java读写.properties文件解决中文乱码问题

额,这个图,有点乱。但是,却把三种运行情况,全部给展示出来了。很清晰.

最后,代码里面也看到了怎么把字节流变成带编码格式的字符流,这个可以注意下,我也留个笔记.

对上面的代码的更新,算是结构调整,功能分开。瞬间代码看着就清晰明了啦.

所以,一般上面的代码是不推荐实用的。个中妙用,自行体会吧.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.lxk.propertyfiletest;
 
import java.io.*;
import java.util.properties;
 
/**
  * 读写properties文件测试
  * <p>
  * created by lxk on 2017/4/25
  */
public class main {
   public static void main(string[] args) {
     properties prop = readpropertiesfile();
     writepropertiesfile(prop);
   }
 
   /**
    * 读properties文件
    */
   private static properties readpropertiesfile() {
     properties prop = new properties();
     inputstream in = null ;
     try {
       in = new bufferedinputstream( new fileinputstream( "d:config.properties" ));
       //prop.load(in);//直接这么写,如果properties文件中有汉子,则汉字会乱码。因为未设置编码格式。
       prop.load( new inputstreamreader(in, "utf-8" ));
       for (string key : prop.stringpropertynames()) {
         system.out.println(key + ":" + prop.getproperty(key));
       }
     } catch (exception e) {
       system.out.println(e.getmessage());
     } finally {
       if (in != null ) {
         try {
           in.close();
         } catch (ioexception e) {
           system.out.println(e.getmessage());
         }
       }
     }
     return prop;
   }
 
   /**
    * 写properties文件
    */
   private static void writepropertiesfile(properties prop) {
     prop.setproperty( "phone" , "10086" );
     fileoutputstream ofile = null ;
     try {
       //保存属性到b.properties文件
       ofile = new fileoutputstream( "b.properties" , false ); //true表示追加打开,false每次都是清空再重写
       //prop.store(ofile, "此参数是保存生成properties文件中第一行的注释说明文字");//这个会两个地方乱码
       //prop.store(new outputstreamwriter(ofile, "utf-8"), "汉字乱码");//这个就是生成的properties文件中第一行的注释文字乱码
       prop.store( new outputstreamwriter(ofile, "utf-8" ), "lll" );
     } catch (exception e) {
       system.out.println(e.getmessage());
     } finally {
       if (ofile != null ) {
         try {
           ofile.close();
         } catch (ioexception e) {
           system.out.println(e.getmessage());
         }
       }
     }
   }
 
}

注意:这个是我后来发现的,不知道在看的各位有没有这个问题.

我发现写出来的properties文件的编码格式并不是简单的utf-8,而是utf-8无bom格式。证据可参见下图:

Java读写.properties文件解决中文乱码问题

这个打开工具叫 notepad++ 估计在看的各位的电脑上都有这个吧.

但是你要是把这个文件的编码格式给修改成utf-8编码之后,运行的结果,就有一丢丢不一样.

继续参见下图:

Java读写.properties文件解决中文乱码问题

看到多了一个小杠“”-“”,具体怎么解释,我暂时还不清楚.

这个时候,写出来的文件的,也同样出现了这个问题,具体还是继续参见下图:

Java读写.properties文件解决中文乱码问题

所以,这个我暂时解释不了。 惭愧。。。。 还有个问题就是:读出来的属性,是不按原来文件中的顺序展示的,当然写的时候,也是乱序的。 这还是个问题,还有待解决。什么时候解决了,再在此处留个链接.

链接:java代码实现对properties文件有序的读写 。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:http://blog.csdn.net/qq_27093465/article/details/70765870 。

最后此篇关于Java读写.properties文件解决中文乱码问题的文章就讲到这里了,如果你想了解更多关于Java读写.properties文件解决中文乱码问题的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com