gpt4 book ai didi

java - 用Java读取.txt文件?

转载 作者:行者123 更新时间:2023-12-01 20:11:07 25 4
gpt4 key购买 nike

我正在创建以下程序,它读取 text.file 并根据给定的参数打印出某些内容。如果用户输入“run Profile text.txt”,我希望它逐行打印出文件。如果用户输入“run Profile text.txt 5”,则应打印出前5行。我编写了以下程序:

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

public class Profile{

public static String file;
public static int len;
public static Profile a;
public static Profile b;

//Method to read whole file
static void wholeFile(String file){
Scanner in = new Scanner(file);
int lineNumber = 1;

while(in.hasNextLine()){
String line = in.nextLine();
System.out.println("/* " + lineNumber + " */ " + line);
lineNumber++;
}
in.close();
}

//Method to read file with line length
static void notWholeFile(String file, int len){
Scanner in = new Scanner(file);
int lineNumber = 1;

while(in.hasNextLine() && lineNumber <= len){
String line = in.nextLine();
System.out.println("/* " + lineNumber + " */ " + line);
lineNumber++;
}
in.close();
}

Profile(String file){
this.file = file;
}
Profile(String file, int len){
this.file = file;
this.len = len;
notWholeFile(file, len);
}
public static void main(String[] args){
Scanner in = new Scanner (System.in);
if (args.length == 1){
file = args[0] + "";
a = new Profile(file);
wholeFile(file);
}
if (args.length == 2){
file = args[0] + "";
len = Integer.parseInt(args[1]);
b = new Profile(file, len);
notWholeFile(file, len);
}
}
}

出于测试目的,我在目录中包含了一个名为“text.txt”的 .txt 文件,其中包含以下文本:

blah blah blah blah blah blah blah
blah blah blah blah blah blah blah

blah blah blah blah blah blah blah
blah blah blah blah blah blah blah

blah blah blah blah blah blah blah
blah blah blah blah blah blah blah

blah blah blah blah blah blah blah
blah blah blah blah blah blah blah

我是java初学者,但相信不应该有任何错误。但是,当我输入“run Profile text.txt 5”时,我得到以下输出:

> run Profile text.txt 5
/* 1 */ text.txt
/* 1 */ text.txt
>

为什么我无法打印“blah blah”行?我读取 .txt 文件的方式是否有错误?如何访问该文本文件中的行?任何建议都会有帮助。

最佳答案

您正在扫描文件的名称,而不是文件的内容。即:

Scanner in = new Scanner(file);  // where file is of type string

创建一个从String本身读取的Scanner。尝试这样的事情:

Scanner in = new Scanner(new File(file));

这应该读取文件的内容。

关于java - 用Java读取.txt文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46700629/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com