- 텍스트 타입의 기본 데이터 타입 및 객체의 값을 문자(2byte)로 출력
=========================================================================================================
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
public class PrintWriterTest {
private String name = null;
private String s = null;
private int year = 0;
public PrintWriterTest(String name, String s, int year){
this.name = name;
this.s = s;
this.year = year;
}
public static void main(String[] args) throws IOException {
System.out.println("?");
PrintWriterTest pwt = new PrintWriterTest("javastudy", "since", 2000);
FileWriter fwriter = new FileWriter("C:/Test/PrintWriterTest.txt");
PrintWriter pw = new PrintWriter(fwriter);
pw.print(pwt.name);
pw.print(pwt.s);
pw.print(pwt.year);
pw.close();
}
}
'프로그래밍 정리 > 자바' 카테고리의 다른 글
StringReader와 StringWriter (0) | 2013.06.02 |
---|---|
CharArrayReader와 CharArrayWriter (0) | 2013.06.02 |
LineNumberReader (0) | 2013.06.02 |
BufferedReader와 BufferedWriter (0) | 2013.06.02 |
FileReader와 FileWriter (0) | 2013.06.02 |