When I getting something in my code I use a short path like
this.getStylesheets().add("/css/editorTool.css");
but when I writing a new file I give exact paht - like:
File f = new File("D:\\IdeaProjects\\SmartCRM for TB\\EditorTool\\resourses\\html\\test.html");
try{
BufferedWriter bw = new BufferedWriter(new FileWriter(f));
bw.write(html);
bw.close();
} catch (IOException e) {
e.printStackTrace();
}
As i will have to distribute this app among some users I will not be able to garanty that the absolute path to my app will be the same. How i can write it to so that it is like "path_to_the_folder_that_is_contained_in_app + fileName?
you can use system property "user.dir" to get current working path, the code is alike this:
then the file will be under currentWorkingPath when the program run on any PC.