As usually I read resources from jar file as following:
getClassLoader().getResource(pTextPath + "/" + pLang +".xml");
I need to read all resources with certain name from known folder in jar file. E.g. read *.xml from
addon/resources/texts
Could I somehow get from jar files list of resources according to path and name template?
UPDATE: Exact duplication of Get a list of resources from classpath directory Please close the question.