码迷,mamicode.com
首页 > 编程语言 > 详细

Java读取WEB-INF目录下的properties配置文件

时间:2015-08-12 16:17:12      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

文件位置:

技术分享

 

代码:

public static Properties getProperties(){   
        Properties pts = new Properties ();
        FileInputStream in = null;
        try{
            String path = UtilManager.class.getResource("/").getPath();
            String websiteURL = (path.replace("/build/classes", "").replace("%20"," ").replace("classes/", "") + "wsdl.properties").replaceFirst("/", "");
            System.out.println ("websiteURL:"+websiteURL);
            in = new FileInputStream(websiteURL);
            pts.load(in);
        }catch (FileNotFoundException e){
            e.printStackTrace();
        }catch (IOException e){
            e.printStackTrace();
        }
        return pts;
    }

 

 

技术分享

Java读取WEB-INF目录下的properties配置文件

标签:

原文地址:http://www.cnblogs.com/staryy/p/4724480.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!