当前位置:编程学习 > JAVA >>

java读取properties文档

   String urlAddress = null;
 Properties prop = new Properties();//创建属性类
        InputStream inStream =new FileInputStream("sys.properties");
        // this.getClass().getResourceAsStream("/sys.properties");         //Test.class.getClassLoader().getResourceAsStream("sys.properties")        //流读取属性文件
        prop.load(inStream);//加载流
 urlAddress = prop.getProperty("urlAddress");     //获取属性文件中数据名
 
 
 
作者“艰难困苦 玉汝于成”

补充:软件开发 , Java ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,