java jar包中读取文件

 对接微信支付中开发过程中遇到的问题,(同事做过这块的对接,我想偷点懒...咳咳咳),下面是同事给的domo中的方法

public class WXPayConfigImp{
    .
    .
    .
    public static String CERT_PARTH = "C:\\Users\\test\\Desktop\\xxx.p12";//绝对路径

    private final byte[] certData;

    public WXPayConfigImp() throws Exception {
        File file = new File(CERT_PARTH);
        InputStream certStream = new FileInputStream(file);
        this.certData = new byte[(int) file.length()];
        certStream.read(this.certData);
        certStream.close();
    }
    .
    .
    .
}

输出结果:

2718

实际使用时,xxx.p12文件存放到src/main/resources下,修改成如下所示:

public class WXPayConfigImp{
    .
    .
    .
    public static String CERT_PARTH = "../../../../xxx.p12";//相对路径

    private final byte[] certData;

    public WXPayConfigImp() throws Exception {
        File file = new File(WXPayConfigImp.class.getResource(CERT_PARTH).getFile());
        InputStream certStream = new FileInputStream(file);
        this.certData = new byte[(int) file.length()];
        certStream.read(this.certData);
        certStream.close();
    }

    public static void main(String[] args) throws Exception {
        WXPayConfigImp w = new WXPayConfigImp();
        System.out.println(w.certData.length);
    }
    .
    .
    .
}

main方法输出结果:

2718

然而在启动项目使用时出现报错

java.io.FileNotFoundException: file:\D:\java\workspace\......\xxx-service.jar!\com\......\wxpay\xxx.p12 (文件名、目录名或卷标语法不正确。)

 原因:WXPayConfigImp.class.getResource(CERT_PARTH).getFile()这个方法是专门用来加载非压缩/非Jar包文件类型的资源,而xxx.p12文件最终在jar包中,因此并没有读取到xxx.p12文件。

使用数据流形式去读取,如下所示:

public class WXPayConfigImp{
    .
    .
    .
    public static String CERT_PARTH = "xxx.p12";

    private final byte[] certData;

    public WXPayConfigImp() throws Exception {
        InputStream certStream = this.getClass().getClassLoader().getResourceAsStream(CERT_PARTH);
        this.certData = new byte[certStream.available()];
        certStream.read(this.certData);
        certStream.close();
    }

    public static void main(String[] args) throws Exception {
        WXPayConfigImp w = new WXPayConfigImp();
        System.out.println(w.certData.length);
    }
    .
    .
    .
}

main方法输出结果:

2718

启动项目使用时也是可用的。

 

 

如果有写的不对的地方,请大家多多批评指正,非常感谢!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值