Popular searches
//

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 🙂

share post

//

More articles in this subject area

Discover exciting further topics and let the codecentric world inspire you.