Java IO笔记:标准IO

1.标准输入和输出

标准IO是指程序的输入和标准输出,用户和程序之间、程序和程序之间的交流都可以通过标准IO实现。Java中使用System.in(输入),System.out(输出)和System.err(错误输出)来提供程序的输入和输出。


2.读取输入数据

public class Echo {

	public static void main(String[] args) throws IOException {

		BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
		String s;

		while ((s = in.readLine()) != null && s.length() > 0) {
			System.out.println(s);
		}

	}

}

3.重定向输入和输出

public class RedirectTest {

	public static void main(String[] args) throws IOException {
		
		//保存out,后面使用
		PrintStream con = System.out;
		
		
		BufferedInputStream in = new BufferedInputStream(new FileInputStream(
				"test.txt"));

		PrintStream out = new PrintStream(new BufferedOutputStream(
				new FileOutputStream("test.out")));
		
		//重定向输入到文件输入流 in
		System.setIn(in);
		
		//重定向输出到文件输出流
		System.setOut(out);
		System.setErr(out);

		
		BufferedReader input = new BufferedReader(new InputStreamReader(
				System.in));
		String s;
		while((s = input.readLine()) != null){
			System.out.println(s);
		}
		
		out.close();
		
		//输出重定向默认的
		System.setOut(con);

	}

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值