gpt4 book ai didi

java - 从命令行读取文件名并在主方法之外使用它

转载 作者:行者123 更新时间:2023-12-01 18:59:16 27 4
gpt4 key购买 nike

我必须编写一个程序来计算文件中的行数,该文件在启动程序时指定:

java CountText textFile.txt

在主要方法中,我使用此代码来获取在 cmd 中输入的文件名:

if ( args.length > 0 ) {
String file = args[0];
}

在主方法之外我想再次引用这个文件名:

public void Lines() throws Exception {      
FileReader fr = new FileReader ( file );

找不到该符号(因为 main 方法是公共(public)且静态的,所以我找不到该符号?)。我觉得这是一个简单的解决方案,但我无法弄清楚。

编辑:由充满鳗鱼的气垫船(也是特拉维斯)解决。这是一个范围问题,可以通过将字符串通过其参数传递到方法中来解决。

public class CountText {
public static void main ( String args[] ) throws Exception {
CountText count = new CountText();

if ( args.length > 0 ) {
String file = args[0];
count.Lines( file );
count.Words( file );
count.Characters( file );
}
}

public void Lines ( String file ) throws Exception {
FileReader fr = new FileReader ( file );

最佳答案

您在这里遇到的是范围问题。您的变量是在主函数中定义的,因此其他函数无法访问它。我们说变量文件是主函数的本地

一种在 Lines 方法中使用 file 变量的方法,以便它接受字符串参数,然后您可以将其传递给它。这看起来像

public void Lines( String fileName ) throws Exception {
// rest of the code here
}

那么你就可以像这样调用该方法

if ( args.length > 0 ) {
String file = args[0];
Lines( file );
}

关于java - 从命令行读取文件名并在主方法之外使用它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12851462/

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