如何知道哪个变量是 try 块中的罪魁祸首?

2022-09-01 02:20:43

在某个尝试块中,我有两个变量,当我使用和时,它们可能会导致。问题是,如果我有例外,如何知道哪个字符串是麻烦制造者?我需要获取麻烦制造者的变量名称。StringNumberFormatExceptionInteger.parseInt(string1)Integer.parseInt(string2)catch

下面是一些示例代码:

public class test {
    public static void main(String[] args) {
        try {
            String string1 = "fdsa";
            String string2 = "fbbbb";
            Integer.parseInt(string1);
            Integer.parseInt(string2);
        } catch (NumberFormatException e) {
            e.printStackTrace();
        }
        }
    }

而且该方法不会告诉我变量名称;它只是告诉我麻烦制造者的内容。e.printStackTrace()

java.lang.NumberFormatException: for input string: “fdsa” at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.lang.Integer.parseInt(Integer.java:580) at java.lang.Integer.parseInt(Integer.java:615) at test.main(test.java:9) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)

进程已完成,退出代码为 0

我需要知道变量名称的原因是我需要提示用户发生了什么。例如,通过使用

System.out.println(troubleMakerName + "is wrong!")

在我的要求中,用户应输入

fd=(fileName,maxLength,minLength)

然后我将分析输入字符串并创建一些响应。所以我想检查一下和是否会抛出.在这种情况下,如果有问题,那么我需要提示用户minLength是错误的。maxLengthminLengthNumberFormatExceptionminLength


答案 1

您遇到了 XY 问题

您不想读取实际的变量名称。您希望能够验证输入并向用户提供合理的错误消息。

String fileName, maxLengthInput, minLengthInput;
int maxLength, minLength;

List<String> errors = new ArrayList<>();

try {
    maxLength = Integer.parseInt(maxlengthInput);
} catch (NumberFormatException nfe) {
    errors.add("Invalid input for maximum length, input is not a number");
}

try {
    minLength = Integer.parseInt(minlengthInput);
} catch (NumberFormatException nfe) {
    errors.add("Invalid input for minimum length, input is not a number");
}

// show all error strings to the user

不直接抛出异常,而是收集它们,可以一次通知用户所有无效输入(可能用红色突出显示相关字段),而不是让他们修复一个输入,尝试再次提交,然后看到另一个输入也是错误的。

您可以使用自己的数据结构来代替字符串,其中包含相关字段等的信息,但这很快就会超出范围。主要要点是:使用两个 try-catch 块,并且能够区分哪个字段是无关紧要的。

如果涉及更多输入,则可以将其重构为循环。


答案 2

使用 2 个单独的块来解析每个变量的两个输入。然后在每个块内生成健全性检查消息。trycatchcatch

        String string1 = "fdsa";
        String string2 = "fbbbb";
        try {
            Integer.parseInt(string1);
        } catch (NumberFormatException e) {
            e.printStackTrace();
            **//Please provide a valid integer for string1**
        }
        try {
            Integer.parseInt(string2 );
        } catch (NumberFormatException e) {
            e.printStackTrace();
           **//Please provide a valid integer for string2** 
        }

推荐