์๋ฐ์์ ์ ์ถ๋ ฅ(I/O)๋ผ๊ณ ํ๋ฉด ๊ธฐ์กด์ ์ฌ์ฉํ๋ print์ Scanner๊ฐ ์ ๋ถ์๋ค. ์ด๋ ์๋ฐ์์ ๋จ์ํ ์ ์ถ๋ ฅํ๋ ๋ฐฉ๋ฒ์ด๋ค.
์ปดํจํฐ์ ์ ์ถ๋ ฅ์ Input,Output ์ค์ฌ์ "I/O" ๋ผ๊ณ ํ๋ค.
์๋ฐ์์ ๋ชจ๋ IO๋ ์คํธ๋ฆผ(Stream)์ ํตํด ์ด๋ฃจ์ด์ง๋ค.
1. Stream ์ข ๋ฅ
2. Reader ํด๋์ค
3. Writer ํด๋์ค
์คํธ๋ฆผ (Stream)
- ์ ์ถ๋ ฅ ์ฅ์น์์ ๋ฐ์ดํฐ๋ฅผ ์ฝ๊ณ ์ฐ๊ธฐ ์ํด ์๋ฐ์์ ์ ๊ณตํ๋ ํด๋์ค
- byte ํํ๋ก ๋ฐ์ดํฐ๋ฅผ ์ด๋ฐํ๋๋ฐ ์ฌ์ฉํ๋ ์ฐ๊ฒฐํต๋ก.
- ํ๋์ ์คํธ๋ฆผ์ผ๋ก ์ ๋ ฅ๊ณผ ์ถ๋ ฅ์ ๋์์ ์ฒ๋ฆฌํ ์ ์๋ค. (๋จ๋ฐฉํฅํต์ , ์ ์ถ๋ ฅ์ ๋์์ ํ๋ ค๋ฉด 2๊ฐ ์คํธ๋ฆผ ํ์ํจ.)
- ํ์ ๊ตฌ์กฐ, FIFO(First In First Out)
- ๋ฐ์ดํฐ์ ์คํธ๋ฆผ ๊ทผ์์ง(์์์ ) : Source , ๋ฐ์ดํฐ ์ข ์ฐฉ์ : Sink, ์ฐ๊ฒฐํ ๊ฒ: Stream ์ด๋ค.
- Source - Input Stream(์ ๋ ฅ ์คํธ๋ฆผ) - Output Stream(์ถ๋ ฅ ์คํธ๋ฆผ) - Sink
- ํค๋ณด๋๋ฅผ ์ฐ๊ฒฐํ์ฌ ์ ๋ ฅ ๋ฐ๋ ๊ฒ์ ์ ๋ ฅ์คํธ๋ฆผ(Input Stream)์ ์ญํ ์ด๊ณ , ๊ทธ๋ ๊ฒ ์ปดํจํฐ์ ์ ๋ ฅ๋ ์ ๋ณด๋ฅผ ๋ชจ๋ํฐ๋ก ์ถ๋ ฅํ๋ ๊ฒ์ ์ถ๋ ฅ ์คํธ๋ฆผ(Output Stream)์ ์ญํ ์ด๋ค.
InputStream
: System.in ์ฌ์ฉํ๋ฉฐ OutputStream: System.out์ ์ฌ์ฉํ๋ค.
- read() : ์ ๋ ฅ์คํธ๋ฆผ์ผ๋ก๋ถํฐ 1๋ฐ์ดํธ๋ฅผ ์ฝ๊ณ ์ฝ์ ๋ฐ์ดํธ ๋ฆฌํด / read(byte[] b) / close()
- ์๋ InputStream์ผ๋ก ์ ๋ ฅ ๋ฐ์ผ๋ฉด, ๊ธฐ๋ณธํ์ int ๋ก ๋ฐ์์ค๋ฉฐ, ์ฌ๋ฌ ๊ฐ์ ๊ฐ์ ์ ๋ ฅํด๋ ๋จ 1๊ฐ์ ๋ฌธ์๋ฐ์ ๋ชป๊ฐ์ ธ์ค๊ธฐ ๋๋ฌธ์ charํ์ ๋ํ๋ด๋ ค๋ฉด char ํ์ ์ผ๋ก ์บ์คํ ํด์ค์ผํ๋ค.
โก๏ธ InputStreamReader , OutputStreamWriter ์ ์ฌ์ฉํ๋ฉด ์ฌ๋ฌ๊ฐ์ ๊ฐ์ด ์ถ๋ ฅ ๊ฐ๋ฅํด์ง๋ค.
OutputStream
: ์ถ๋ ฅํ ๋์๋ ์ถ๋ ฅ๋ณ์.write(); ํ์ flush() ์ close()๋ฅผ ์ฌ์ฉํด์ฃผ์ด์ผ ํ๋ค.
flush๋ ์ถ๋ ฅ๊ณผ ๋์์ ์ ์ฅ๋ ๊ฐ์ ๋น์์ฃผ๋ฉฐ, close()๋ ๋์์ ๋ช ์ํด์ฃผ๋ ์ญํ ์ด๊ธฐ ๋๋ฌธ์ด๋ค.
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public class Practice {
public static void main(String[] args) {
InputStream in = System.in;
OutputStream out = System.out;
try {
int data = in.read(); //๋ํดํธ : ์์คํค์ฝ๋๊ฐ์ผ๋ก ์ฝ์ด์จ๋ค
System.out.println((char)data); //char๋ก ํ๋ณํํ๋ฉด ๋ฌธ์ ๊ทธ๋๋ก์ ๊ฐ์ ํ์ธํ ์ ์๋ค.
} catch (IOException e) {
e.printStackTrace();
}
}
๋ณด์กฐ์คํธ๋ฆผ
1. ๋ฌธ์๋ณํ(InputStreamReader/OutputStreamWriter)
2. ์
์ถ๋ ฅ์ฑ๋ฅ(BufferedInputStream/BufferedOutputStream)
3. ๊ธฐ๋ณธ๋ฐ์ดํฐํ์
์ถ๋ ฅ(DataInputStream, DataOutputStream)
4. ๊ฐ์ฒด์
์ถ๋ ฅ(ObjectInputStream/ObjectOutputStream)
InputStreamReader & OutputStreamWriter
: ๋ฌธ์ ๋ณํ ๋ณด์กฐ์คํธ๋ฆผ
: InputStream/ OutputStream ๊ณผ ๋ฌ๋ฆฌ ์ฌ๋ฌ๊ฐ์ ๊ฐ์ด ์ ์ถ๋ ฅ๊ฐ๋ฅํ๋ค. + char ํ๋ณํ์ด ํ์์์ด์ง (char์ด ๊ธฐ๋ณธํ)
: ํ๊ณ - ๋ถ๊ฐ๋ณ์ ์.
- InputStreamReader ๋ก 2๊ฐ ์ด์์ ๊ฐ์ ๋ฐ์์ค๋ ค๋ฉด ๋ฐฐ์ด์ ์ฌ์ฉํด์ผ๋ง ํ๋ค. ์ด ๋ง์ ๊ณ ์ ๋์ด์๋ ๊ฐ๋ฐ์ ๋ฐ์์ฌ ์ ์์์ ์๋ฏธํ๋ค. ์ด๋ ๋ด๊ฐ ์ ๋ ฅํ๋ ๊ฐ์ด ๊ณ ์ ๋์ด์๋ ๊ฐ๋ณด๋ค ์์ผ๋ฉด, ๊ณต๊ฐ์ ๋ญ๋น๊ฐ ๋ฐ์ํ๋ฉฐ ๊ณ ์ ๋์ด์๋ ๊ฐ๋ณด๋ค ํฌ๋ฉด , ๊ณต๊ฐ์ด ๋ถ์กฑํ ๋ฌธ์ ๊ฐ ๋ฐ์ํ๋ค.. -> ํจ์จ์ฑ ๋จ์ด์ง.
- InputStreamReader์ charํ์ ์ ๊ธฐ๋ณธํ์ผ๋ก ํ๋ค. intํ์ผ๋ก ๋ณํํ๊ณ ์ถ์ผ๋ฉด " - ' 0 ' " ์ ํด์ฃผ๋ฉด ๋๋ค.
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
public class Pracatice01 {
public static void main(String[] args) {
InputStream in = System.in;
InputStreamReader reader = new InputStreamReader(in);
char[]data = new char[10];
try {
reader.read(data);
System.out.print("์ถ๋ ฅ: ");
System.out.println(data);
} catch (IOException e) {
e.printStackTrace();
}
}
}
์ถ๋ ฅ ๊ฒฐ๊ณผ๋ฅผ ๋ณด๋ฉด ๋ฐฐ์ด์ ๋น๊ณต๊ฐ์ด ๊ทธ๋๋ก ์ถ๋ ฅ๋๋ ๊ฒ์ ๊ฐ์์ ์ผ๋ก ํ์ธํ ์ ์๋ค.
์ด๋ฅผ ํตํด InputStreamReader ์ ๊ฐ๋ณ์ ์ด์ง ์์์ ํ์ธํ ์ ์๋ค. -> ๋ฐ์ดํฐ๊ฐ ์์ผ๋ฉด ๊ณต๊ฐ ๋ญ๋น, ๋ง์ผ๋ฉด ๋ฐ์ง ๋ชปํ๋ค.
๊ทธ๋ผ ๊ฐ๋ณ์ ์ผ๋ก ๋ฐ์ดํฐ๋ฅผ ๋ณ๊ฒฝํ ์ ์๋ ๋ณด์กฐ์คํธ๋ฆผ์ด ํ์ํ๊ฒ ๊ตฌ๋ ..!
๊ทธ๋์ ๋ฑ์ฅํ๋๊ฒ ๋ฐ๋ก BufferedReader ๋ค.
Buffer
: ์ ์ถ๋ ฅ ์ฑ๋ฅ ๋ณด์กฐ์คํธ๋ฆผ
- ๊ฐ๋ณ์ ์ผ๋ก ๋ฐ์ดํฐ๋ฅผ ๋ณ๊ฒฝํ ์ ์๋ค.
- 'Enter' ๋ง ๊ฒฝ๊ณ๋ก ์ธ์ํ๋ค. (Scanner : 'Space bar' , 'Enter' ๋ฅผ ๊ฒฝ๊ณ๋ก ์ธ์ํจ.)
- 'String ํ์ '์ด ๊ธฐ๋ณธํ์ด๋ค. (๋ค๋ฅธ ํ์ ์ ์ ์ถ๋ ฅํ ๊ฒฝ์ฐ ํ๋ณํ ํ์ํจ.)
- ๋ง์ ์์ ๋ฐ์ดํฐ๋ฅผ ์ ๋ ฅ๋ฐ๊ณ ์ถ๋ ฅํ ๊ฒฝ์ฐ์ ํจ์จ์ ์ด๋ค.
- Buffer์ ๊ฝ์ฐจ๋ฉด ์๋์ผ๋ก flush ๋๋ค. -> AutoFlush
- ๋ง์ฝ ๋ฐ์ดํฐ์ ํฌ๊ธฐ๊ฐ Buffer๋ณด๋ค ํฌ๋ฉด, ๋๋จธ์ง ๋ฐ์ดํฐ๋ ๋๊ธฐํ๊ณ ์๊ณ AutoFlush๋ฅผ ์คํํ์ฌ ๋น๊ณต๊ฐ์ ๋ค์ ๋ฐ์ดํฐ๋ก ์ฑ์ด๋ค. -> ๊ฐ๋ณ์ !
BufferedReader
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Pracatice01 {
public static void main(String[] args) {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
try {
String s = bf.readLine(); //String ์
๋ ฅ๋ฐ์.
System.out.println(s);
}
catch (IOException e) {
e.printStackTrace();
}
}
}
BufferedWriter
- ๋ฒํผ๋ฅผ ์ก์ ๋์ ์ํ์์ผ๋ก, ๋ง์ง๋ง์ ๋ฐ๋์ flush(), close()๋ฅผ ํธ์ถํด์ผํ๋ค.
- write() ๋ก ์ถ๋ ฅํ ๋ println()๊ฐ์ ๊ธฐ๋ฅ์ด ์์ผ๋ฏ๋ก, \n ์ผ๋ก ๋ฐ๋ก ๊ฐํ์ ํด์ฃผ์ด์ผํ๋ค.
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
public class Pracatice01 {
public static void main(String[] args) throws IOException {
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));//์ ์ธ
String s = "asdfgasdfg";//์ถ๋ ฅํ ๋ฌธ์์ด
bw.write(s);//์ถ๋ ฅ
bw.newLine(); //์ค๋ฐ๊ฟ
bw.flush();//๋จ์์๋ ๋ฐ์ดํฐ๋ฅผ ๋ชจ๋ ์ถ๋ ฅ์ํด
bw.close();//์คํธ๋ฆผ์ ๋ซ์
}
}
FileInputStream & FileOutputStream
: ํ์ผ์ byte๋จ์๋ก ๋ค๋ฃฐ๋ ์ฌ์ฉํ๋ ์คํธ๋ฆผ
FileOutputStream
- ํ์ผ๋ก๋ถํฐ byte ๋จ์๋ก ์ ์ฅํ ๋ ์ฌ์ฉํ๋ค.
- OutputStream์ ํ์ํด๋์ค -> ์ฌ์ฉ๋ฐฉ๋ฒ์ด ๋์ผํ๋ค.
- ๊ฐ์ฒด๊ฐ ์์ฑ๋ ๋ ํ์ผ๊ณผ ์ง์ ์ฐ๊ฒฐ๋๋ค, ๋ง์ฝ ํ์ผ์ด ์กด์ฌํ์ง ์์ผ๋ฉด ์๋์ผ๋ก ์์ฑํ๊ณ , ์ด๋ฏธ ํ์ผ์ด ์กด์ฌํ๋ ๊ฒฝ์ฐ์๋ ํ์ผ์ ๋ฎ์ด์ด๋ค.
ํ์ผ์ ์์ฑํด์ ๊ทธ๊ณณ์ ๋ฌธ์์ด์ ์ ์ฅํด์ค๋ค, ์ถ๋ ฅ(์ฝ๋)ํ๋ ์ฝ๋๋ก ์์๋ณด์.
(1) ํ์ผ์์ฑ
public void fileSave() { //ํ์ผ์ ๋ง๋ค์ด์ ๋ฌธ์๋ฅผ ์ ์ฅํ๋ ๋ฉ์๋
FileOutputStream fout = null;
try {
fout = new FileOutputStream("sample.txt"); //sample.txt ํ์ผ์์ฑ
fout.write(97); // sample.txt์ a์
๋ ฅ
byte[] bar = {98,99,100,101,102}; //๋ฐฐ์ด ์์ฑ
fout.write(bar); //fout์ ๋ฐฐ์ด์๊ธฐ
fout.write(10); //10๋ ์๊ธฐ
fout.write(bar,1, 3); //๋ฐฐ์ด์ 1๋ฒ~3๋ฒ ์ธ๋ฑ์ค ๊ฐ ์๊ธฐ
}
catch(FileNotFoundException e){
e.printStackTrace();
}
catch(IOException e) {
e.printStackTrace();
}
finally {
try {
fout.close();
}
catch(IOException e) {
e.printStackTrace();
}
}
}
FileInputStream
- ํ์ผ๋ก๋ถํฐ byte ๋จ์๋ก ์ฝ์๋ ์ฌ์ฉํ๋ค.
- InputStream์ ํ์ ํด๋์ค -> ์ฌ์ฉ๋ฐฉ๋ฒ์ด ๋์ผํ๋ค.
- ๊ฐ์ฒด๊ฐ ์์ฑ๋ ๋ ํ์ผ๊ณผ ์ง์ ์ฐ๊ฒฐ๋๋ค.
- ๋ง์ฝ ํ์ผ์ด ์กด์ฌํ์ง ์์ผ๋ฉด FileNotFoundException ๋ฐ์ํ๊ธฐ ๋๋ฌธ์ ์์ธ์ฒ๋ฆฌ๊ฐ ํ์๋ค.
(2) ํ์ผ ์ฝ๊ธฐ ft.์ฒซ๋ฒ์งธ ๋ฐฉ๋ฒ
: ํน์ ์ธ๋ฑ์ค๊ฐ์ ์์ฑํ ๋ฐฐ์ด์ ํฌ๊ธฐ๋ก ์ค์ ํ๊ณ for๋ฌธ ๋๋ ค์ฃผ๊ธฐ
public void fileOpen() {
FileInputStream fin = null;
try {
fin = new FileInputStream("sample.txt");
// byte๋ฐฐ์ด์ ์ด์ฉํด์ ์ ์ฒด ์ฝ์ด์ค๊ธฐ!
//ํ์ผ์ length ๋งํผ bar[]์ ์ธ๋ฑ์ค๊ฐ ๋ fileSize๋ฅผ ์ค์ ํด์ฃผ๊ธฐ.
int fileSize = (int) new File("sample.txt").length();
byte[] bar = new byte[fileSize ];
fin.read(bar);
for(int i=0; i<bar.length; i++) {
System.out.print(bar[i] +" ");
}
}
catch(FileNotFoundException e) {
e.printStackTrace();
}
catch(IOException e){
e.printStackTrace();
}
finally {
try {
fin.close();
}
catch(IOException e){
e.printStackTrace();
}
}
}
(3) ํ์ผ์ฝ๊ธฐ ft.๋๋ฒ์งธ ๋ฐฉ๋ฒ
: read() ๋ฉ์๋ ์ฌ์ฉํ๊ธฐ
public void fileOpen2() {
//read()์ฌ์ฉํ๊ธฐ
//์์ธ์ฒ๋ฆฌ์ try with resource ๊ตฌ๋ฌธ์ ํ์ฉ
try( FileInputStream fin = new FileInputStream("sample.txt")){
System.out.println(fin.read());
System.out.println(fin.read());
System.out.println(fin.read());
System.out.println(fin.read());
System.out.println(fin.read());
}
catch(FileNotFoundException e) {
e.printStackTrace();
}
catch(IOException e) {
e.printStackTrace();
}
}
+
byte ๊ธฐ๋ฐ์ผ๋ก ํ์ผ์ ์ฝ๋ FileInputStream, FileOutputStream ๊ณผ ๋ง์ฐฌ๊ฐ์ง๋ก,
๋ฌธ์(char) ๊ธฐ๋ฐ์ผ๋ก ํ์ผ์ ์ฝ๋ FileWriter, FileReader ์ญ์ ๋์ผํ๊ฒ ์์ฑ๊ฐ๋ฅํ๋ฉฐ,
๊ฐ๋ณ์ ์ธ buffer ์์ฑ์ ์ฌ์ฉํด ํ์ผ์ ์ฝ๋ BufferedWriter, BufferedReader ์ญ์ ๋์ผํ๊ฒ ์ฌ์ฉํ๋ค.
: ๊ฐ๊ฐ์ ํ์ ํด๋์ค์ ํด๋นํจ์ผ๋ก ์ฌ์ฉ๋ฐฉ๋ฒ์ ๋์ผํ๋ค.
ํ๋ฆฐ ๋ถ๋ถ์ด๋ ์ด์ํ ๋ถ๋ถ์ด ์์ผ๋ฉด ๋๊ธ๋ก ์ง์ ํด์ฃผ์ธ์!
๊ฐ์ฌํฉ๋๋ค :)