读取输入文本文件

时间:2016-03-26 22:27:31

标签: java text project

所以我正在处理一个接收2个字符串的代码。字符串是"输入#.txt"或"输出#.txt" #符号将替换为使用的任何数字文件。现在在输入文件中是我需要获取的信息。如何确定是否可以打开input.txt文件以及如何打开它。

我尝试过缓冲读卡器并试图将字符串设为文件。

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

public class Robot {
public static void readInstructions(String inputFileName, String outputFileName) throws InvalidRobotInstructionException{
    try{
        BufferedReader input = new BufferedReader(new FileReader(inputFileName));
        File inner = new File(inputFileName);
    Scanner in = new Scanner(input);
    PrintWriter wrt;
        wrt = new PrintWriter(outputFileName);

    if(input.readLine() == null){
        System.out.println("Input file not found.");
        return;
    }

1 个答案:

答案 0 :(得分:1)

这将读取:

中的文件
Scanner input = new Scanner(new File("input5.txt"));

不要忘记在主要方法中添加throws FileNotFoundException

编辑:我看到你添加了代码。