java 属性文件 乱码_Java读写.properties文件实例,解决中文乱码问题详解

package com.lxk.propertyFileTest;

import java.io.*;

import java.util.Properties;

/**

* 读写properties文件测试

*

* 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());

}

}

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值