I need to read a file from my code and convert it to a String using Java7 for my assignment. Can someone please help?
You can use StringWriter of Apache commons IOUtils
StringWriter
StringWriter sampleWriter = new StringWriter(); IOUtils.copy(inputStream, sampleWriter, encoding); String theString = writer.toString();
As another option, you can use ByteArrayOutputStream.
ByteArrayOutputStream
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
You can use
StringWriter
of Apache commons IOUtilsAs another option, you can use
ByteArrayOutputStream
.