I have the File Document.docx and put it in the "src/document/Document.docx" When I use
if(Desktop.isDesktopSupported()){
try{
Desktop.getDesktop().open(new File("src/document/Document.docx"));
} catch(Exception e) {
e.printStackTrace();
}
}
it working in the neatbean but when I build it into the dist folder, it not work
so how can I open this file when I already builded it ?
i'm Vietnamese so my english not good, don't laught it .. Thanks :D