Java 读写 Properties 文件详解编程语言

  
//读操作 
Properties properties = new Properties();  
try 
{  
    properties.load(new FileInputStream("filename.properties"));  
}  
catch (IOException e)  
{  
    // implement catch logic 
} 
 
//写操作 
Properties properties = new Properties(); 
try 
{ 
    properties.store( 
        new FileOutputStream("filename.properties"), null); 
}  
catch (IOException e)  
{ 
    // implement catch logic 
} 

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/10961.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论