Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to create a Path instance for an enum constructor:

/** Temporary paths. */
public enum PATHS {

    /** First temporary directory. */
    PATH1(Files.createTempDirectory(new StringBuilder("tnk").append(File.separator).append("path1")
            .toString())),
    /** Second temporary directory. */
    PATH2(Files.createTempDirectory(new StringBuilder("tnk").append(File.separator).append("path2")
            .toString()));

    /** {@link Path} reference. */
    final Path mPath;

    /**
     * Constructor.
     * 
     * @param pPath
     *            {@link Path} reference
     */
    PATHS(final Path pPath) {
        mPath = pPath;
    }

    /**
     * Get {@link File} associated with the path.
     * 
     * @return {@link File} reference
     */
    public File getFile() {
        return mPath.toFile();
    }
}

Files.createTempDirectory(String, FilleAttribute<?> atts)throws a checked exception (IOException) but how do I catch or throw the exception or more precisely how do I handle the exception? Seems to be a dump question, but I have no idea right now.

share|improve this question

2 Answers

up vote 2 down vote accepted

Handle it in the constructor instead.

PATH1("path1"),
PATH2("path2");

final Path mPath;

PATHS(final String path) {
    try {
        mPath = Files.createTempDirectory(new StringBuilder("tnk").append(File.separator).append(path).toString());
    } catch (IOException e) {
        throw new ExceptionInInitializerError(e);
    }
}

Additional benefit is that it also minimizes code duplication in this particular case.

Said that, I'd really think twice about what Tom Hawtin is trying to tell you.

share|improve this answer
Hm, we are using these two Paths in unit tests for a temporal database and before each test the directories are removed if present. Do you think that's a problem? – Johannes Nov 17 '11 at 20:05

Really anything touching state should not be done with static fields. So simply makes "PATHS" a normal class. Create it once, and endow it to objects that should be using it. The better design should improve error handling, testing, dependency, security, etc.

share|improve this answer
What do you mean with touching state? That wasn't my enum, but I thought instead of PATH1(new File(new StringBuilder(File.separator).append("tmp").append(File.separator).append( "tnk").append(File.separator).append("path1").toString())), I could simply refactor it to use Java7s new FileSystem API/nio2 to be platform independent (instead of using the Linux/Unix standard /tmp folder). – Johannes Nov 17 '11 at 19:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.