Home  >  Article  >  Java  >  A simple example of Java reading and outputting from a file

A simple example of Java reading and outputting from a file

黄舟
黄舟Original
2017-09-30 09:46:261825browse

The following editor will bring you an example of simply reading and outputting from a file in Java. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor and take a look.

Use Scanner to input and PrintStream to output

Function: read from in.txt and output to out.txt

Code:

Same as below


package ioTest;

import java.io.*;
import java.util.Scanner;

public class TestMain {

  public static void main(String[] args) {
    try {
      Scanner sc=new Scanner(new File("in.txt"));
      PrintStream ps=new PrintStream("out.txt");
      while(sc.hasNext()){
        int a=sc.nextInt();
        System.out.print(a+" ");
        ps.println(a);
      }
      
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

}

## Result:

##

The above is the detailed content of A simple example of Java reading and outputting from a file. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn