การแปลง InputStream เป็น String ใน Java

จากก่อนหน้านั้นเราดูเรื่องการแปลง String เป็น InputStream แล้วเราลองมาดูวิธีแปลง InputStream เป็น String บ้างครับโดยเราจะใช้ BufferedReader + InputStreamReader เพื่อการแปลง InputStream เป็น String.

ตัวอย่าง
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package demo.file;
 
import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
 
public class InputStreamToStringExample {
 
    /**
     * @param args
     */
    public static void main(String[] args) {
 
        // intilize an InputStream
        InputStream is = new ByteArrayInputStream(
                "file content..example ".getBytes());
        BufferedReader br = null;
        StringBuilder sb = new StringBuilder();
 
        String line;
        try {
 
            br = new BufferedReader(new InputStreamReader(is));
            while ((line = br.readLine()) != null) {
                sb.append(line);
            }
 
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (br != null) {
                try {
                    br.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        System.out.println(sb.toString());
        System.out.println("InputStream To String Example Is Done.");
    }
 
}
ผลลัพธ์ที่ได้คือ
1
2
file content..example
InputStream To String Example Is Done.

About Nop

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment

0 comments:

Post a Comment