我需要写“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。有人可以帮我解决这个问题吗?