java读取配置文件

/**是否开启发送短信功能*/
	public boolean ifSendSms(){
		String value="";
		try {
			Properties pps = new Properties();
			pps.load(RegisterAction.class.getResourceAsStream("/config.properties"));
			value = pps.getProperty("IF_SEND_SMS").trim();
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		} catch (Exception e) {
			e.printStackTrace();
		}
		if("1".equals(value)){
			return true;
		}else{
			return false;
		}
	}


你可能感兴趣的:(java读取配置文件)