IO流-打印流

一,打印流

IO流-打印流_第1张图片

二,常用方法

IO流-打印流_第2张图片

三,案例

package Print.sd;

import java.io.FileNotFoundException;
import java.io.PrintStream;
import java.nio.charset.Charset;

public class Main {
    public static void main(String[] args) throws FileNotFoundException {
        try ( //1,创建一个打印流管道
              PrintStream da =new  PrintStream("C:\\untitled1\\untitled\\src\\zifuji\\fangfa", Charset.forName("GBK"));
              ){
            da.println(54);
            da.println("ghfqohe");
            da.println("ghfqohe");
            da.println("星火");
            da.println("星火");
            da.println("星火");


        } catch (Exception e) {
            e.printStackTrace();
        }

    }
}
package Print.sd;

import java.io.FileNotFoundException;
import java.io.PrintWriter;

public class Main {
    public static void main(String[] args) throws FileNotFoundException {
        try ( //1,创建一个打印流管道
              PrintWriter da =new PrintWriter("C:\\untitled1\\untitled\\src\\zifuji\\fangfa");
              ){

            da.write("fhadiuf");
            da.write("gfhrgiudnf");


        } catch (Exception e) {
            e.printStackTrace();
        }

    }
}

四,注意

IO流-打印流_第3张图片IO流-打印流_第4张图片

你可能感兴趣的:(File,IO流,python,开发语言)