import java.util.ResourceBundle;

/**
* Created by win7 on 2017/5/20.
*/
public class Test1 {
public static void main(String[] args) {

ResourceBundle resb3 = ResourceBundle.getBundle("abc");
System.out.println("name;"+resb3.getString("name"));
System.out.println("sex:"+resb3.getString("sex"));
System.out.println("测试中文:"+resb3.getString("ceshi"));
System.out.println("ip:"+resb3.getString("ip"));


ResourceBundle resource = ResourceBundle.getBundle("system_config");
try {
String a=new String(resource.getString("lybPayAccountName").getBytes("ISO-8859-1"),"UTF-8");
System.out.println(a);
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}


}



}

src下 abc.properties文件
name=hahh
sex=bai

ceshi=测试

ip=192.168.10.12

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-10
  • 2021-11-19
  • 2021-10-12
  • 2021-11-28
  • 2021-12-01
猜你喜欢
  • 2022-12-23
  • 2022-02-24
  • 2021-08-13
  • 2021-10-13
  • 2022-02-09
相关资源
相似解决方案