java读写Properties文件,java读写properties,package com.
分享于 点击 30062 次 点评:217
java读写Properties文件,java读写properties,package com.
package com.javaniu;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.util.Properties;public class Main { public static void main(String[] args) { Properties property = new Properties(); try { File file = new File("c:/db.properties"); if (!file.exists()) { file.createNewFile(); } // 写入 property.setProperty("database", "localhost"); property.setProperty("user", "javaniu"); property.setProperty("password", "password");...//该片段来自于http://byrx.net
用户点评