반응형
How to convert String to InputStream in Java
A simple Java program to convert a String to InputStream, and use BufferedReader
to read and display the convertedInputStream
.
package com.mkyong;
import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
public class StringToInputStreamExample {
public static void main(String[] args) throws IOException {
String str = "This is a String ~ GoGoGo";
// convert String into InputStream
InputStream is = new ByteArrayInputStream(str.getBytes());
// read it with BufferedReader
BufferedReader br = new BufferedReader(new InputStreamReader(is));
String line;
while ((line = br.readLine()) != null) {
System.out.println(line);
}
br.close();
}
}
반응형
'개발 공부 기록하기 > - Kotlin & Java' 카테고리의 다른 글
Callable과 Thread (0) | 2016.02.04 |
---|---|
Thread.sleep throw InterruptedException? (0) | 2016.01.07 |
[Java] 디렉토리내 일정기간 지난 파일 삭제 (0) | 2016.01.05 |
ScheduleExecutorService 와 Timer를 이용한 일정시간 메소드 실행 (0) | 2016.01.04 |
Timer 클래스를 이용한 작업 스케쥴링 (0) | 2015.12.12 |