[Updated, sorry about the change but now to the real problem] I cannot include try-catch-loop there for the exception from the method getCanonicalPath(). I trie
The name is fine; you forgot to declare the type.
public static final String startingPath;
// ^^^^^^
Fixing that, you of course realize the harder problem of how to deal with the possible IOException
and startingPath
being final
. One way is to use a static
initializer:
Any static initializers declared in a class are executed when the class is initialized and, together with any field initializers for class variables, may be used to initialize the class variables of the class.
public static final String startingPath;
static {
String path = null;
try {
path = new File(".").getCanonicalPath();
} catch (IOException e) {
// do whatever you have to do
}
startingPath = path;
}
Another way is to use a static
method (see Kevin Brock's answer). That approach actually results in better readability, and is the recommended approach by Josh Bloch in Effective Java.