读取配置文件工程src目录下配置文件封装,如sms_format.properties
生活随笔
收集整理的這篇文章主要介紹了
读取配置文件工程src目录下配置文件封装,如sms_format.properties
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
sms_format.properties配置文件如上圖所示
讀取配置文件的類
??
import java.io.InputStream; import java.util.Properties;//讀取配置文件 public class Config {static Properties prop=new Properties(); static{ try{String path="sms_format.properties";InputStream is=Config.class.getClassLoader().getResourceAsStream(path);if(is==null){is=Config.class.getClassLoader().getResourceAsStream("/"+path);}prop.load(is);}catch(Exception e){e.printStackTrace();}}public static String getValue(String key,String defaultv) {return prop.getProperty(key,defaultv);}public static String getValue(String key) {return prop.getProperty(key);}public static void main(String[] args) {}}?讀取配置文件的屬性值
String sms1 = Config.getValue("sms1");String sms2 = Config.getValue("sms2");String sms3_1 = Config.getValue("sms3_1");String sms3_2 = Config.getValue("sms3_2");String sms4 = Config.getValue("sms4");?
總結
以上是生活随笔為你收集整理的读取配置文件工程src目录下配置文件封装,如sms_format.properties的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Delphi发送邮件...
- 下一篇: 【Cocos2d-X(2.x) 游戏开发