// case 1: file not found
JavacTool tool = JavacTool.create();
StringStream out = new StringStream();
tool.run(null, out, out, foo.getPath());
check(out.toString());
// case 2: file is a directory
out.clear(); try {
foo.mkdir();
tool.run(null, out, out, foo.getPath());
check(out.toString());
} finally {
foo.delete();
}
}
privatestaticvoid check(String s) {
System.err.println(s); // If the compiler crashed and caught the error, it will print out // the "oh golly, I crashed!" message, which will contain the Java // name of the exception in the stack trace ... so look for the // string "Exception" or "Error". if (s.indexOf("Exception") != -1 || s.indexOf("Error") != -1) thrownew AssertionError("found exception");
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.