加载properties配置文件

匿名 (未验证) 提交于 2019-12-02 23:03:14

需要jar包

工具类:

package qingxia.tang.utils;  import java.io.IOException; import java.io.InputStream; import java.util.Properties;  import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Resource;  public class Demo {     private static Properties pro=new Properties();     static {         Resource res=new ClassPathResource("upload.properties");//加载配置文件         InputStream isp=null;         try {             isp=res.getInputStream();//获取输入流             pro.load(isp);         } catch (IOException e) {             e.printStackTrace();         } finally {             try {                 if(isp!=null) {                     isp.close();                 }             } catch (IOException e) {                 e.printStackTrace();             }         }     }          public static String getValue(String key) {         return pro.getProperty(key);     }          public static void main(String[] args) {         String value = getValue("password");         System.out.println(value);     }  }

需将upload.properties放在根目录。

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!