java 中获取本地路径

在我们写jar的时候,通常会在运行jar的时候传入参数进入,对文件的处理的话就要出入wenj文件的路径了

但是传的时候,传绝对路径没问题,但是如果是xian相对路径的话,就要在代码中获取当前的环境路径了

通过下面的方式可以获取到当前环境的绝对路径:

public class Main {

    public static void main(String[] args) {
        //这是找Main.class文件的绝对路径;
        //String path = Main.class.getClassLoader().getResource("").getPath();

        //这是找jar包的绝对路径;
        String jarWholePath = Main.class.getProtectionDomain().getCodeSource().getLocation().getFile();
        try {
            jarWholePath = java.net.URLDecoder.decode(jarWholePath, "UTF-8");
        } catch (Exception e) {
            System.out.println(e.toString());
        }
        String path = new File(jarWholePath).getParentFile().getAbsolutePath()+"\\";
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值