将文件放在resource目录下
String path = RSA.class.getResource(fileName).getPath(); System.out.println(path);
idea直接执行 getResource
编译成jar包执行 getResource
路径不完全一致
解决方法:https://www.cnblogs.com/silenceshining/p/15253360.html
将文件放在resource目录下
String path = RSA.class.getResource(fileName).getPath(); System.out.println(path);
idea直接执行 getResource
编译成jar包执行 getResource
路径不完全一致
解决方法:https://www.cnblogs.com/silenceshining/p/15253360.html