I am having a problem writing to a .xml file inside of my jar. When I use the following code inside of my Netbeans IDE, no error occurs and it writes to the file just fine.

public void saveSettings(){
    Properties prop = new Properties();
    FileOutputStream out;
    try {
        File file = new File(Duct.class.getResource("/Settings.xml").toURI());
        out = new FileOutputStream(file);
        prop.setProperty("LAST_FILE", getLastFile());
        try {
            prop.storeToXML(out,null);
        } catch (Exception e) {
            JOptionPane.showMessageDialog(null, e.toString());
        }
        try {
            out.close();
        } catch (Exception e) {
            JOptionPane.showMessageDialog(null, e.toString());
        }
    } catch (Exception e) {
        JOptionPane.showMessageDialog(null, e.toString());
    }
}

However, when I execute the jar I get an error saying:

IllegalArguementException: uri is not hierachal

Does anyone have an idea of why it's working when i run it in Netbeans, but not working when i execute the jar. Also does anyone have a solution to the problem?

link|improve this question

62% accept rate
3  
to put it simply you cant write inside zip/jar files w/o rebuilding them. look at java.util.zip.ZipFile. In NetBeans most likely you run the application from the file system, not packed inside the jar. – bestsss Jan 14 at 20:25
@bestsss: So what would be a solution to saving settings? Place the file in some other location unrelated to the jar? – Michael Rentmeister Jan 14 at 20:28
@MichaelRentmeister Use the Preferences API? – Dave Newton Jan 14 at 20:29
Yes, @Michael, consider jar/zip read-only mostly. Yes you can use the user directory and create the file there. Or (better) use java.util.prefs.Preferences, it's almost like properties file :) – bestsss Jan 14 at 20:31
Ah Preferences worked great! Thanks very much =) – Michael Rentmeister Jan 14 at 20:57
show 1 more comment
feedback

2 Answers

The default class loader expects the classpath to be static (so it can cache heavily), so this approach will not work.

You can put Settings.xml in the file system if you can get a suitable location to put it. This is most likely vendor and platform specific, but can be done.

link|improve this answer
3  
user.home is always available and it's not vendor dependent. Also it should be writable. – bestsss Jan 14 at 20:43
Not for servlet code, or things running as a service. – Thorbjørn Ravn Andersen Jan 14 at 22:21
the code uses swing and servlet code can use "user.home", unsigned applets can't. sure java can always have security restrictions but that's far beyond the point if you deploy the application yourself. – bestsss Jan 14 at 22:42
feedback

Add the location of the Settings.xml to the classpath.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.