1. 程式人生 > >使用配置檔案資源

使用配置檔案資源

import java.util.Properties;

public class AppResource {
	
	private static Properties pro;


	public static void setPro(Properties p) {
		if(pro == null){
			pro = p;
		}
	}
	public static String get(String name){
		return pro.getProperty(name);
	}
}