I have a XML file with data that is used in both my C# and Java version of a library. Ideally I want to embed this XML file in a package in that library.
I only need to access it from within my library, so I was wondering: is that possible?
|
|
|
In Java, you could include the XML file itself in the JAR file. You can then use something like this:
And parse your The above |
|||
|
|
|||
|
|