I have a unit test that needs to work with XML file located in src/test/resources/abc.xml. What is the easiest way just to get the content of the file into String?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
Finally I found a neat solution:
Works perfectly. |
|||||
|
|
First make sure that
Once you have the InputStream, you just need to convert it into a string. This resource spells it out: http://www.kodejava.org/examples/266.html. However, I'll excerpt the relevent code:
|
|||||||
|
|
Assume UTF8 encoding in file - if not, just leave out the "UTF8" argument & will use the default charset for the underlying operating system in each case. Quick way in JSE 6 - Simple & no 3rd party library!
Quick way in JSE 7 (the future)
Neither intended for enormous files though |
||||
|
|

getResourceAsStream()which I believe is the right approach for the OP's question. – Kirk Woll Oct 8 '10 at 14:17