Posted on Leave a comment

Resource file not found

File file = new File(getClass().getResource("resourceFile.txt").getFile());

but the file doesn’t exist.

It turned out the problem was due to spaces in my path

I found two solutions:

org.apache.commons.io.FileUtils.toFile(myClass().getResource("resourceFile.txt")‌​);
myClass().getResource("resourceFile.txt")‌​.toURI();
Posted on Leave a comment

Joshua Bloch – Effective Java

Create and destroy object

Рассмотрите возможность замены конструкторов
статическими методами генерации.

Свойство синглтона oбеспечивайте закрытым конструктором

Отсутствие экземпляров  обеспечивает закрытый конструктор

Continue reading Joshua Bloch – Effective Java