解决了
我最大的“
D’oh”时刻!我一直在Eclipse上而不是在我执行它的cmd上编译它。因此,我新编译的类进入了bin文件夹,并且通过命令提示符编译的类文件在我的src文件夹中保持不变。我重新编译了我的新代码,它就像一个魅力。
File fold = new File("../playlist/" + existingPlaylist.getText() + ".txt");fold.delete();File fnew = new File("../playlist/" + existingPlaylist.getText() + ".txt");String source = textarea.getText();System.out.println(source);try { FileWriter f2 = new FileWriter(fnew, false); f2.write(source); f2.close();} catch (IOException e) { e.printStackTrace();}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)