I am aware of the getResourceAsStream() method but there is an issue with the parser that reads the file, the whole structure was implemented to expect a FileInputStream() and the getResourceAsStream() returns an input stream which cannot be casted. Is there any easy "fix" for this situation?
|
|
|||||||
|
|
A resource contained within a JAR file is not itself a file, and cannot be read using a Of course, in future, never write code to expect concrete implementations of things like |
|||
|
|
|
I recently encountered the same issue. A third-party library we use reads from FileInputStream but the resources can be anywhere, in a JAR or remote. We used to write to temporary files but that has too much overhead. A better solution is write a FileInputStream which wraps InputStream. Here is the class we use,
|
|||
|
|
don't believe your parse only works on FileInputStream but not InputStream if that is the real case, and you must use that parser 2 options
|
|||
|
|