Я попробовал предлагаемое решение, и косая черта в имени файла не работала, например: ... (). GetResourceAsStream ("/ my.properties"); ноль был возвращен
Удаление косой черты сработало: .... getResourceAsStream ("my.properties");
Вот из doc API:
Перед делегированием абсолютное имя ресурса строится из данного имени ресурса с использованием этого алгоритма:
If the name begins with a '/' ('\u002f'), then the absolute name of the resource is the portion of the name following the '/'.
Otherwise, the absolute name is of the following form:
modified_package_name/name
Where the modified_package_name is the package name of this object with '/' substituted for '.' ('\u002e').