You can convert a Java String to InputStream using the ByteArrayInputStream class from the java.io package.
Example:
package org.code2care.java.examples;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
public class JavaStringToInputStreamExample {
public static void main(String[] args) throws IOException {
String inputString = "This is a input string!";
byte[] byteArr = inputString.getBytes();
InputStream inputStream = new ByteArrayInputStream(byteArr);
int nextByteData;
while ((nextByteData = inputStream.read()) != -1) {
System.out.print((char) nextByteData);
}
}
}
Note that you can also use StringBufferInputStream to achieve the same, but it has been deprecated since Java 1.1 and should be avoided.
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Deep Dive into Java 8 Predicate Interface
- Read and Parse XML file using Java DOM Parser [Java Tutorial]
- Java 8 Predicate Functional Interface isEqual() Method Example
- Convert Multidimensional Array toString In Java
- How to read int value using Scanner Class Java
- Spring Boot AI + LLM + Java Code Example
- Write to a File using Java Stream API
- Implementing Bubble Sort Algorithm using Java Program
- How to Fix XmlBeanDefinitionStoreException in Java SpringBoot ApplicationConfig.xml
- YAML Parser using Java Jackson Library Example
- [Fix] java: integer number too large compilation error
- Convert JSON String to Java GSON Object Example
- Read a file using Java 8 Stream
- Java Spring Boot 3 Web Hello World with Gradle in IntelliJ
- Ways Compare Dates in Java Programming with Examples
- Pretty Print JSON String in Java Console Output
- Java JDBC with Join Queries Example
- How to Check For Updates on Windows 11 (Step-by-Step)
- [Fix] java.net.MalformedURLException: unknown protocol
- How to display date and time in GMT Timezone in Java
- Error: LinkageError occurred while loading main class UnsupportedClassVersionError [Eclipse Java]
- How to convert a String to Java 8 Stream of Char?
- RabbitMQ Queue Listener Java Spring Boot Code Example
- 5+ Fibonacci number Series Java Program Examples [ 0 1 1 2 3 ..]
- Handling NullPointerException with Java Predicate
More Posts:
- F2 Key Cell Editing Alternative for Excel for Mac - Windows
- Pdf Text to Speech option in Mac OS X Preview App - Mac-OS-X
- How to Upgrade Pandas Package - PIP
- Run DynamoDB Local on Docker Container - Docker
- How to reset Mac Password using Terminal - MacOS
- Mac: How to quit Jupyter Notebook from Terminal - MacOS
- Python: How to Return a dictionary keys as a list - Python
- 32: Python Program to Find Square Root of a Number - Python-Programs