java怎么打开之前的文件(java文件默认打开方式)
程序员文章站
2023-11-28 11:00:16
1.需要读取的文件地址:2. 本地启动项目读取文件inputstream instream = object.class.getresourceasstream("/cert/apiclient_ce...
1.需要读取的文件地址:
2. 本地启动项目读取文件
inputstream instream = object.class.getresourceasstream("/cert/apiclient_cert.p12");
3.服务器中启动在jar包中读取文件
import org.springframework.core.io.classpathresource;
inputstream instream = new classpathresource("classpath:/cert/apiclient_cert.p12
推荐阅读