//
Convert InputStream to String
10.8.2009 | 1 minutes reading time
Because searching for “Convert InputStream to String” still brings up solutions involving StringBuffer, byte[] or something like that, developers still produce large amounts of different implementations of the same conversion in their projects. In an attempt to reduce the variations here the simplest solution using no custom code at all:
1InputStream stream = getClass().getResourceAsStream("/classpath/resource.xml");
2 String xml = org.apache.commons.io.IOUtils.toString(stream);
Please spread the word, use apache commons 🙂
//
More articles
fromFabian Lange
//
Your job at codecentric?
Jobs
Agile Developer und Consultant (w/d/m)
Alle Standorte
//
More articles in this subject area
Discover exciting further topics and let the codecentric world inspire you.
Blog author
Fabian Lange
Do you still have questions? Just send me a message.
Do you still have questions? Just send me a message.