Question:
I'm workin with text files on Java. On Ubuntu 10.
But, i'm having problems with path dir.
Example:
saveFile("textFile.txt","abc");
This abstract fuction basically put "abc" on "textFile.txt".
I compile this file, and create a jar file (using NetBeans).
When i run the app, and call saveFile("textFile.txt","abc"), textFile.txt is saved on \home. I don't want this. I want that textFile.txtgo to pathDir inside jar file.
I'd like to know how do i write in this file, this same way?
Any knows how to help me? Thanks!