标准输入输出和重定向输入输出

Java的标准输入/输出分别通过System.in和System.out来代表,在默认的情况下分别代表键盘和显示器,当程序通过System.in来获得输入时,实际上是通过键盘获得输入。当程序通过System.out执行输出时,程序总是输出到屏幕。

在System类中提供了三个重定向标准输入/输出的方法

static void setErr(PrintStream err) 重定向“标准”错误输出流

static void setIn(InputStream in)    重定向“标准”输入流

static void setOut(PrintStream out)重定向“标准”输出流

下面程序通过重定向标准输出流,将System.out的输出重定向到文件输出,而不是在屏幕上输出。

  1. import java.io.FileOutputStream; 
  2. import java.io.PrintStream; 
  3. public class Test { 
  4.     public static void main(String[] args) throws Exception 
  5.     { 
  6.          
  7.         PrintStream ps=new PrintStream(new FileOutputStream("work")); 
  8.         System.setOut(ps); 
  9.         System.out.println("Hello World!"); 
  10.  
  11.     } 
  12.      
  13.  
  14.  
  15.      
import java.io.FileOutputStream;
import java.io.PrintStream;
public class Test {
	public static void main(String[] args) throws Exception
	{
		
		PrintStream ps=new PrintStream(new FileOutputStream("work"));
		System.setOut(ps);
		System.out.println("Hello World!");

	}
	


	
}

下面的代码将System.in重定向到文件输入,所以将不接受键盘输入

  1. import java.io.FileInputStream; 
  2. import java.util.Scanner; 
  3.  
  4.  
  5. public class Test { 
  6.     public static void main(String[] args) throws Exception 
  7.     { 
  8.         FileInputStream fis=new FileInputStream("work"); 
  9.         System.setIn(fis); 
  10.          
  11.         Scanner sc=new Scanner(System.in); 
  12.         while(sc.hasNextLine()) 
  13.         { 
  14.             System.out.println(sc.nextLine()); 
  15.         } 
  16.          
  17.  
  18.     } 
  19.      
  20.  
  21.  
  22.      
import java.io.FileInputStream;
import java.util.Scanner;


public class Test {
	public static void main(String[] args) throws Exception
	{
		FileInputStream fis=new FileInputStream("work");
		System.setIn(fis);
		
		Scanner sc=new Scanner(System.in);
		while(sc.hasNextLine())
		{
			System.out.println(sc.nextLine());
		}
		

	}
	


	
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值