我如何在Jar中写文件

时间:2017-05-09 16:34:33

标签: java jar getresource

我需要写“indice_corrente.txt”文件。结构是:

Home
  src
    Grafica
       FinestraPrincipale.java
       indice_corrente.txt

我需要在“indice_corrente.txt”中编写hello,因此我使用此代码获取资源:

    String path=this.getClass().getResource("/Grafica/indice_corrente.txt").getPath();

PrintWriter pw=new PrintWriter(path);

但字符串路径为null,因为getResource为null。有人可以帮我解决这个问题吗?

0 个答案:

没有答案