Hi all. I have the following piece of code: String sFilename = ""; URL u = ClassLoader.getSystemResource("duncan.txt"); if (u != null) { sFilename = new File(u.getFile()).getPath(); } The intention is that it finds this file, and the gets the filename, which is subsequently passed into a native function. In Windows this works fine, for example after the code is run, sFilename ...