On the Java API
Posted by Nat Tuck
Apparently in Java you can’t just read a file. First you have to create a FileOpenerFactory which has a createFileOpener() method, which returns a FileOpener, which has an openFile() method. The openFile() method returns nothing, but then you can call the getOpenedFile() method to get a File object. You can’t actually read from a File object though…
Read more...
