컴메이트

37-2

자바소스2016. 7. 16. 11:26

10package pk37;

import java.io.*;

public class PrintStreamTest {


public static void main(String[] args) {

// TODO Auto-generated method stub

try{

PrintStream p = new PrintStream("dat2.txt");

p.println("A");

p.println("123");

p.println("Hello");

p.close();

}catch(IOException e){

}

}//main

}//class



'자바소스' 카테고리의 다른 글

37-4  (0) 2016.07.16
37-3  (0) 2016.07.16
37-1  (0) 2016.07.16
36-2  (0) 2016.07.16
36-1  (0) 2016.07.16