Learn to convert an InputStream to a String using BufferedReader, Scanner or IOUtils classes.
Reading a String from InputStream is a very common requirement in several types of applications where we have to read a file from a network stream or from a file system.
1. Using InputStream.readAllBytes() (Since Java 9)
The InputStream.readAllBytes() API converts the input stream to bytes. Then we use the new String() to create a new String object.
InputStream in = new FileInputStream(new File("C:/temp/test.txt"));
String fileContent = new String( in.readAllBytes() );
Internally, it uses readNBytes(Integer.MAX_VALUE) method. It means it should not be used to read a file size greater than 2GB.
2. Using BufferedReader
Using BufferedReader is the easiest and most popular way to read a file into String. It helps to read the file as InputStream and process it line by line.
InputStream in = new FileInputStream(new File("C:/temp/test.txt"));
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
StringBuilder out = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
out.append(line);
}
String fileContent = out.toString();
reader.close();
Alternatively, we can use the BufferedReader.lines() method [added in Java 8] to get the Stream of lines and process the content as needed.
InputStream in = new FileInputStream(new File("C:/temp/test.txt"));
String newLine = System.getProperty("line.separator");
String fileContent;
try (Stream<String> lines = new BufferedReader(new InputStreamReader(in)).lines()) {
fileContent = lines.collect(Collectors.joining(newLine));
}
//Use fileContent
3. Google Guava IO
Guava library has some very useful classes and methods to perform IO operations. These classes hide all complexities, otherwise exposed.
3.1. Dependencies
Maven dependency for Google Guava.
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
</dependency>
3.2. Using ByteSource
ByteSource represents a readable source of bytes, such as a file. It has utility methods that are typically implemented by opening a stream, doing something, and finally closing the stream that was opened.
Its asCharSource(charset) method decodes the bytes read from a source as characters in the given Charset. It returns the characters as String as the method output.
InputStream inputStream = new FileInputStream(new File("C:/temp/test.txt"));
ByteSource byteSource = new ByteSource() {
@Override
public InputStream openStream() throws IOException {
return inputStream;
}
};
String fileContent = byteSource
.asCharSource(Charsets.UTF_8)
.read();
3.3. Using CharStreams
The CharStreams class also provides utility methods for working with character streams. Using InputStreamReader along with CharStreams helps in converting an InputStream to a String.
Java program to convert InputStream to String with CharStreams class in Google guava library.
InputStream inputStream = new FileInputStream(new File("C:/temp/test.txt"));
String fileContent = null;
try (final Reader reader = new InputStreamReader(inputStream)) {
fileContent = CharStreams.toString(reader);
}
System.out.println(fileContent);
4. Apache Commons IO
4.1. Dependencies
Include the following dependencies in the project to include common-io jars.
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
4.2. Using IOUtils
Apache commons has a very useful class IOUtils to read file content into String. It makes the code a lot cleaner and easy to read. It provides better performance too.
Use either of the two methods-
IOUtils.copy()IOUtils.toString()
//Method 1 IOUtils.copy()
StringWriter writer = new StringWriter();
IOUtils.copy(new FileInputStream(new File("C:/temp/test.txt")), writer, "UTF-8");
String fileContent = writer.toString();
System.out.println(fileContent);
//Method 2 IOUtils.toString()
String fileContent = IOUtils.toString(new FileInputStream(new File("C:/temp/test.txt")), "UTF-8");
System.out.println(fileContent);
5. Java InputStream to String using Scanner
Using Scanner class is not so popular, but it works. The reason it works is because Scanner iterates over tokens in the stream, and in this process, we can separate tokens using the “beginning of the input boundary” thus giving us only one token for the entire contents of the stream.
FileInputStream fin = new FileInputStream(new File("C:/temp/test.txt"));
java.util.Scanner scanner = new java.util.Scanner(fin,"UTF-8").useDelimiter("\A");
String fileContent = scanner.hasNext() ? scanner.next() : "";
scanner.close();
That’s all. The purpose of this post is to provide quick links for a very specific purpose i.e. to read InputStream into String.
Happy Learning !!
Hi I have the data in the notepad like below:
[VERSION_NUMBER]
version_number = 1.0.0
[MULTIBACK]
BACK= 44C0E0B36BD26.JPG
BACK2= 0E0B36BD2C.JPG
[VIOLATOR_HEADER_1]
num = 0
Total = 1
Possible = 0
So i have get all the data and store in the string but I need to select any one field and edit that field how can do that please let me know
Hey , I am trying to read the data from InputStream and want to make it as a string so how can i do that.
I have read somewhere we can use JsonReader but in tomcat server i can’t able to process Json Request because its showing me Caused by: java.lang.ClassNotFoundException: org.glassfish.json.JsonProviderImpl
There is a bug in your implementation of 1). You need to insert a new-line character for each line read, otherwise the resulting string will be incorrect. HTH
Sir i have a string
String s= “B55627&827,1101111”;
I need to read this string as follows :-
int a = Integer.parseInt(s.substring(0,4));
int b = Integer.parseInt(s.substring(4,8));
int c = Integer.parseInt(s.substring(8,11));
int d = Integer.parseInt(s.substring(11, 13))
int e = Integer.parseInt(s.substring(13, 15));
int f = Integer.parseInt(s.substring(15, 17));
But i am only reading the first line not able to read the next lines at all.
What should I do sir
Hi, because code is throwing
java.lang.NumberFormatExceptionin first line itself. “B556” is not a number.Thank you sir
Sir can you give me the code as how to extract TCP packet sent from the server.
I have no prior experience of working on socket programming, till date. So You will need to research on your own or ask your question over stackoverflow. I did a quick google search and comes up with this SO thread.
I have main and class code but I am getting confused where to put the code for reading a stream of data. In class I have the code that has data separately. I need to put all those data in a stream and read that as a string. I have created in public class type. can you guide me as how should I proceed further.
Can you please post the code you have in hand, and then ask exactly where you are facing problem.
I have received TCP packet through codewarrior software in C language. I need to capture that packet and segregate into certain bytes as header is of 4 bytes and data is of 3 bytes each and unpacket it to get the original information / data. Please provide the code to do so
I need a code to read a stream of data and run as string.
You may get help from this post: https://howtodoinjava.com/java8/read-file-line-by-line/
please you can explain me the following line of code?
java.util.Scanner scanner = new java.util.Scanner(fin,”UTF-8″).useDelimiter(“A”);
String theString = scanner.hasNext() ? scanner.next() : “”;
What it is the delimiter”A”
and what it is a caracter of escape?
Tank you very much
mauro
Is it good to test the performance of scanner ? . If yes, then compare to most common way method. This scanner takes much time to read the file. If i am wrong please correct. Your resources are so helpful
long startTime = Calendar.getInstance().getTimeInMillis();
FileInputStream fin = new FileInputStream(new File(“/Users/administrator/Desktop/code.txt”));
java.util.Scanner scanner = new java.util.Scanner(fin,”UTF-8″).useDelimiter(“A”);
String theString = scanner.hasNext() ? scanner.next() : “”;
scanner.close();
System.out.println(“Scanner performance ” + (Calendar.getInstance().getTimeInMillis() – startTime));
Can you post java io package interface/classes hierarchy diagrammatical.
I will try to find time