This tutorial shows 5 different ways to convert InputStream to String in Java.
Tagged: Apache-Commons-IO
4 ways to copy file in Java
There is several ways to copy file from one location to another. 4 ways will be shown here : Writing a InputStream to an OutputStream Using FileChannel Using java.nio.file.Files Using Apache Commons IO FileUtils
3 ways to append content to file in Java
There are several ways to append content to an existing file in Java. Below three ways to do it : Using FileWriter Using java.nio.file.Files Using Apache Commons IO FileUtils 1- Using FileWriter JDK 1.4+ Since...
How to write file in Java
In this post, you will lean how to write file in Java. 4 various ways will be used : BufferedWriter PrintWriter Using Try with resources Using fileUtils from Apache commons IO 1- BufferedWriter Since...
How to read file in Java
In this tutorial, we will learn how to read file in Java. 4 easy ways will be used : BufferedReader Scanner Using try with resources Using fileUtils from Apache commons IO