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

java 打jar包配置文件和jar包通级

时间:2020-07-16 11:49:30      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:property   sys   java   key   message   路径   exce   int   str   

public class jarTs {
    public static void main(String[] args) throws IOException {
        String path =System.getProperty("user.dir");
        System.out.println("user.dir:  " + path);
        String proPath = path  + File.separator +"properties";
        FileInputStream in = new FileInputStream(proPath);
        Properties props = new Properties();
        props.load(in);
        in.close();
        String libPathKey = "lib_path";
        String libPath = props.getProperty(libPathKey);
        System.out.println("lib文件路径," + libPath);
    }
}

配置文件 properties

# ip and port of server socket
ip=127.0.0.2
lib_path = "D:\\Java_project\\faceRec2.0\\arcsoft_lib"
port=9999
# error message

 

java 打jar包配置文件和jar包通级

标签:property   sys   java   key   message   路径   exce   int   str   

原文地址:https://www.cnblogs.com/wt7018/p/13320743.html

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