0

我正在尝试读取输入(从键盘以及命令行文件重定向),处理输入信息。并将其输出到文件中。我的理解是使用以下代码,并使用命令行:java programName< input.txt >output.txt我们应该能够将输出打印到文件中。但它不起作用。有人可以帮忙指出这样做的正确方法吗?非常感谢!

public static void main(String[] args) {

    Scanner sc = new Scanner (System.in);

    int [] array= new int[100];
    while (sc.hasNextLine()){
        String line = sc.nextLine();

        .....//do something

    }
4

1 回答 1

1

试试下面的代码

import java.io.*;
import java.util.*;
/**
 *
 * @author Selva
 */
public class Readfile {
  public static void main(String[] args) throws FileNotFoundException, IOException{
   if (args.length==0)
   {
     System.out.println("Error: Bad command or filename.");
     System.exit(0);
   }else {
       InputStream in = new FileInputStream(new File(args[0]));
       OutputStream out = new FileOutputStream(new File(args[1]));
      byte[] buf = new byte[1024];
      int len;
      while ((len = in.read(buf)) > 0) {
         out.write(buf, 0, len);
      }
      in.close();
      out.close();
   }   
  }  
}

使用如果您的文本文件和 java 代码是同一文件夹运行此代码,则运行此代码,如下所示。

java Readfile input.txt output.txt

如果您的文本文件和 java 代码是不同的文件夹,请运行如下程序。

java Readfile c:\input.txt c:\output.txt

如果您使用扫描仪读取输入表单键盘。请尝试以下代码

import java.io.*;
import java.util.*;
    /**
     *
     * @author Selva
     */
    public class Readfile {
      public static void main(String[] args) throws FileNotFoundException, IOException{
       Scanner s=new Scanner(System.in);
       if (args.length==0)
       {
         System.out.println("Error: Bad command or filename.");
         System.exit(0);
       }else {
           System.out.println("Enter Input FileName");
           String a=s.nextLine();
           System.out.println("Enter Output FileName");
           String b=s.nextLine();
           InputStream in = new FileInputStream(new File(a));
           OutputStream out = new FileOutputStream(new File(b));
          byte[] buf = new byte[1024];
          int len;
          while ((len = in.read(buf)) > 0) {
             out.write(buf, 0, len);
          }
          in.close();
          out.close();
       }   
      }  
    }
于 2014-09-25T05:20:41.970 回答