jar包调用.properties 文件

本地eclipse开发使用,可以正常使用

     public static String getpath(String arg) {

          String filepath = "";

//        Properties prop = new Properties();    

//        String filename=arg;

//        String filepath = "";

//        InputStream in = null;

//        try{

//            in = Object.class.getClassLoader().getResourceAsStream("/system.properties");

//            System.out.println(in);

//            prop.load(in);

//            Iterator<String> it=prop.stringPropertyNames().iterator();

//            System.out.println("读入的配置文件");

//            while(it.hasNext()){

//                 String key = it.next();

//                 if(key.equals(filename)) {

//                      filepath = prop.getProperty(key).toString();

//                      break;

//                 }

//            }

//            }catch(Exception e){

//                 e.printStackTrace();

//            }finally {

//                 if(in!=null)

//                      try {

//                           in.close();

//                      } catch (IOException e) {

//                           e.printStackTrace();

//                      }

//            }

          return filepath;

     }

然而当打包成.jar部署到服务上时,无法获取system.properties文件,尝试了绝对路径相对路径方法都失败,最后才用另外一种

            ResourceBundle rb = ResourceBundle.getBundle("system");

            filepath = rb.getString(arg);

服务器上也可以调通了。

具体原因等搞清楚了再添加,目前先解决使用问题。

另外,使用maven管理jar包时,需要在pom文件中添加如下声明,否则无法将properties文件打包进jar包

 

 <resources>
        <resource>
            <directory>src/main/resources</directory>
            <includes>
                <include>**/*.properties</include>
            </includes>
            <filtering>false</filtering>
        </resource>
      
    </resources>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值