首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >Java:无限循环中的扫描器输入

Java:无限循环中的扫描器输入
EN

Stack Overflow用户
提问于 2018-06-08 03:42:09
回答 1查看 639关注 0票数 -2

我目前正在尝试编写一个简单的程序来测试字符串中的某些字符是否在它们应该在的位置。例如,正常的mm/dd/yy格式中的'/‘。但由于某些原因,我甚至无法通过扫描仪输入,因为它只是一直要求输入。我到处寻找,可以找到任何人与我有确切的问题,考虑到这是发生在只有一个独立的扫描仪。我对Java非常陌生,所以我认为这只是我的一个简单的错误,但我似乎就是搞不清楚,也不想浪费更多的时间。

代码语言:javascript
复制
import java.util.Scanner;
public class Main {


    public static Character req = '/'; 

    public static boolean datecheck(String d){
        String hold = d; 
        String[] a = new String[1];
        Character one = hold.charAt(2);
        Character two = hold.charAt(5); 

        //check to make sure the "/" are where they need to be
        if(one.equals(req)&&two.equals(req)){
        return true; 
        }
        else
            return false; 
    }



public static void main(String[] args) {
    // TODO Auto-generated method stub
    Scanner input = new Scanner(System.in);
    System.out.println("welcome to the BrightSide Scheduler "
            + "\nplease input the day you wish to schedule:");
    String date = input.next();
    input.close();
    try{
    datecheck(date);
    }catch (NullPointerException e){
        System.out.println("didnt work");
    }

    if (datecheck(date)==true){
        System.out.print("Success");
    }
    else{
        System.out.println("fail");
    }
}

}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-06-08 05:05:32

在问这个问题之前,我已经编辑掉了我在代码中对原始问题的一些注释,以节省一些有碍观瞻的东西。它在下面的代码块中。导入了LinkedList和一大块注释,我决定在达到程序的这一部分之前不使用它们。显然,删除所有这些额外的内容可以让我的程序正常工作,但我不完全确定原因是什么……

因此,下面是问题的再现,我已经修复了我自己的问题,只是通过编辑我们的评论和导入我想。

代码语言:javascript
复制
import java.util.LinkedList;
import java.util.Scanner;
public class Main {



/*public class Date {
private String day;
private String month;
private String year; 


public Date(String day, String month, String year){
    this.day = day;
    this.month = month;
    this.year = year;

}
public String getDay() {
    return day;
}
public String getMonth(){
    return month;
}
public String getYear(){
    return year; 
}

//String[] options = new String[15]; 
}*/

public static Character req = '/'; 

public static boolean datecheck(String d){
    String hold = d; 
    String[] a = new String[1];
    Character one = hold.charAt(2);
    Character two = hold.charAt(5);
    //take user input an search through the string at to make sure it is 
    //formated correctly, then return true to continue the scheduler
    for(int x = -1; x<5; x = x+ 3){
        while(x != -1){
            int n = 0; 
            a[n] = hold.substring(x,x+1);
            n++;
        }

    }
    //check to make sure the "/" are where they need to be
    if(one.equals(req)&&two.equals(req)){
    return true; 
    }
    else
        return false; 
}

public static void main(String[] args) {
    // TODO Auto-generated method stub
    Scanner input = new Scanner(System.in);
    System.out.println("welcome to the BrightSide Scheduler "
            + "\nplease input the day you wish to schedule:");
    String date = input.next();
    input.close();
    try{
    datecheck(date);
    }catch (NullPointerException e){
        System.out.println("didnt work");
    }

    if (datecheck(date)==true){
        System.out.print("Success");
    }
    else{
        System.out.println("fail");
    }
}

}

下面是我的控制台的样子:console img

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/50749068

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档