使用相同变量进行输入的 Java 简单程序 - 不起作用

发布于 2024-12-29 10:07:34 字数 1352 浏览 1 评论 0原文

我想要做的就是将字符串变量用于我的所有扫描仪输入。

public static void main(String[] args){
Scanner getInput = new Scanner(System.in);

String defaultInFile = "fileContainingEmails.txt";
String defaultOutFile = "copyPasteMyEmails.txt";

String myInFile;
String myOutFile;

    System.out.print("Enter input filename [default: " + defaultInFile + "]: ");
    //CRUD applications oh yea
    String myInputNom = getInput.nextLine();
    if (myInputNom.equals(""))
    {
        myInFile = defaultInFile;
    }
    else
    {   
        myInFile = myInputNom;
    }

    //System.out.println(defaultOutFile); THIS WORKS

    if (myInputNom.equals(""))
    {
        System.out.print("Enter output filename [default: " + defaultOutFile + "]: ");
    }
    else
    {
        System.out.print("Enter output filename [default: " + myInFile + "]: ");
    }

    //System.out.println("'" + myInputNom + "'");        

    myInputNom = getInput.nextLine();

    System.out.println("'" + myInputNom + "'"); 

    if (myInputNom.equals(""))
    {
        myOutFile = defaultOutFile;
    }
    else
    {
        myOutFile = myInputNom;
    }

    System.out.println("Input file: " + myInFile);
    System.out.println("Output file: " + myOutFile);
    }

那么我做错了什么?第二个 getInput.nextLine();就像它忽略所有输入一样。

我期望 myOutFile 中有一些东西,但我什么也没得到。

谢谢!

All I want to do is use the string variable for all my scanner input.

public static void main(String[] args){
Scanner getInput = new Scanner(System.in);

String defaultInFile = "fileContainingEmails.txt";
String defaultOutFile = "copyPasteMyEmails.txt";

String myInFile;
String myOutFile;

    System.out.print("Enter input filename [default: " + defaultInFile + "]: ");
    //CRUD applications oh yea
    String myInputNom = getInput.nextLine();
    if (myInputNom.equals(""))
    {
        myInFile = defaultInFile;
    }
    else
    {   
        myInFile = myInputNom;
    }

    //System.out.println(defaultOutFile); THIS WORKS

    if (myInputNom.equals(""))
    {
        System.out.print("Enter output filename [default: " + defaultOutFile + "]: ");
    }
    else
    {
        System.out.print("Enter output filename [default: " + myInFile + "]: ");
    }

    //System.out.println("'" + myInputNom + "'");        

    myInputNom = getInput.nextLine();

    System.out.println("'" + myInputNom + "'"); 

    if (myInputNom.equals(""))
    {
        myOutFile = defaultOutFile;
    }
    else
    {
        myOutFile = myInputNom;
    }

    System.out.println("Input file: " + myInFile);
    System.out.println("Output file: " + myOutFile);
    }

So what am I doing wrong? The second getInput.nextLine(); acts like it ignores all input.

I expect something in myOutFile, but I get nothing.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秋意浓 2025-01-05 10:07:34

你的代码在这里工作得很好。

% java -cp . foo
Enter input filename [default: fileContainingEmails.txt]: df
Enter output filename [default: df]: dfee
'dfee'
Input file: df
Output file: dfee

尝试提供帮助时却发现一切都没有损坏,这实际上是一种解脱。

Your code works fine here.

% java -cp . foo
Enter input filename [default: fileContainingEmails.txt]: df
Enter output filename [default: df]: dfee
'dfee'
Input file: df
Output file: dfee

It's actually a relief to try to help, only to discover that nothing is broken.

辞别 2025-01-05 10:07:34

您的评论:

我不想把它写在任何地方,如果输入为空,只需在屏幕上显示默认文件名

是错误的,只需在屏幕上显示默认文件名,因为您的输入文件名永远不会为空。如果用户没有为输入文件输入任何文本,则会给出默认值:

  if (myInputNom.equals("")) {
     System.out.print("Enter output filename [default: " + defaultOutFile + "]: ");
  } else {
     System.out.print("Enter output filename [default: " + myInFile + "]: ");
  }

因此这里的 if 条件:

  if (myInputNom.equals("")) {
     myOutFile = defaultOutFile;
  } else {
     myOutFile = myInputNom;
  }

永远不会为 true。

Your comment:

I don't want to write it anywhere, just display the default file name on the screen if the input is blank

is in error as your input file name will never be blank. If the user enters no text for the input file, it will be given the default value:

  if (myInputNom.equals("")) {
     System.out.print("Enter output filename [default: " + defaultOutFile + "]: ");
  } else {
     System.out.print("Enter output filename [default: " + myInFile + "]: ");
  }

So the if condition here:

  if (myInputNom.equals("")) {
     myOutFile = defaultOutFile;
  } else {
     myOutFile = myInputNom;
  }

will never be true.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文