I just realised that I cant use files from outside a jar archive. If thats the case then when I deploy apps that need other documents, say an xml file, do i send the xml alongside the app or there is a way out..
Thanks
|
I just realised that I cant use files from outside a jar archive. If thats the case then when I deploy apps that need other documents, say an xml file, do i send the xml alongside the app or there is a way out.. Thanks |
|||||||
|
|
I'd suggest that you simply include the required resources within the .jar file. You can have any type of files in there, including .xml-files. Related questions:
If you really prefer to load "external" files you'll have to be more clear about the problems of opening them outside of the jar file. |
|||||||
|
|
But this does not work if you also want to "write" to one of those files!!! If you only want to read, put everything in there. The convention is to create a package called resources in the root of you source code ("src" for example (I use Eclipse)), and just put everything in there, and then use |
|||
|
|