System.out.println("Codebase is " + codebase);
System.out.println("Attempting to open file for reading");
try {
FileInputStream fis = new FileInputStream(codebase + "/sdoRead");
System.out.println("got input stream");
} catch (SecurityException se) {
System.out.println("got security exception");
} catch (Exception e) {
System.out.println("got other exception " + e);
}
System.out.println("Attempting to open file for writing");
try {
FileOutputStream fis = new FileOutputStream(codebase + "/sdoWrite");
System.out.println("got output stream");
} catch (SecurityException se) {
System.out.println("got security exception");
} catch (Exception e) {
System.out.println("got other exception " + e);
}