读取属性文件

孤者浪人 提交于 2020-03-24 12:46:07

@ 在项目路径下创建一个text:

   jco.client.ashost=host
   jco.client.client=client

   保存另存为user.properties

@

public static void main(String[] args) throws SQLException, IOException {
        String currpath = new File("").getAbsolutePath()                          
                +"\\user.properties";  //获取属性文件的绝对路径
        System.out.println(currpath);
        Properties prop = new Properties();  
        InputStream in;
        try {
            in = new FileInputStream(new File(currpath));//读属性文件
            if(in != null){  
                prop.load(in);  
                String ashost = prop.getProperty("jco.client.ashost");  
                String clientnr = prop.getProperty("jco.client.client");  
                System.out.println(ashost);
                System.out.println(clientnr);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }

    }

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!