- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
Discription:
我在下面的代码中使用了几个扫描器语句。首先我读“地址”,然后读“手机号码”。然后是用户的一些随机内容。
当我使用adress=sc.next()
它从用户读取地址的字符串值(不带空格)并转到下一个扫描语句,即mobile=sc.nextBigInteger()
。通过使用此方法,我无法读取“adress(string)”中的空格,并且它会抛出运行时错误 inputMismatchException。
现在如果我使用adress=sc.NextLine
,程序会直接跳转到mobile=sc.nextBigInteger()
。
在上述情况和下面的代码中如何读取空格作为输入。我如何保护自己免受运行时错误的影响。我在论坛上收到了类似的问题,但没有一个令人满意。谢谢。 (询问我是否需要有关问题的更多信息)
Expected: input(In adress string) : pune maharashtra india
output(in display function) : pune mahrashtra india.
What exactly happened: if input(in adress string) : pune output(in display function) : pune
if input(in adress string) : Pune india
(Now As soon as i entered the string and hit the enter there I get a runtime error as an inputmismatchexception )
> JAVA
public class Data {
Scanner sc = new Scanner(System.in);
String adress;
BigInteger AcNo;
BigInteger mobile;
String ifsc;
void getData() {
System.out.println("Welcome to Bank System");
System.out.println("Please Enter the adress :");
adress= sc.next();
System.out.println("Enter the Mobile Number");
mobile = sc.nextBigInteger();
System.out.println("Enter the Account Number");
AcNo = sc.nextBigInteger();
System.out.println("Enter the IFSC Code");
ifsc= sc.next();
}
public static void main(String[] args) {
Data d=new Data();
d.getData();
}
}
最佳答案
更改此行;
adress= sc.next();
用这一行;
adress = sc.nextLine();
这将解决您的问题。 scan.nextLine()
返回所有内容,直到下一个新行 delimiter
或 \n
,但 scan.next()
不是。
所以所有的代码都会像这样;
public class Data{
String adress;
BigInteger AcNo;
BigInteger mobile;
String ifsc;
void getData() {
System.out.println("Welcome to Bank System");
System.out.println("Please Enter the adress :");
adress = new Scanner(System.in).nextLine();
System.out.println("Enter the Mobile Number");
mobile = new Scanner(System.in).nextBigInteger();
System.out.println("Enter the Account Number");
AcNo = new Scanner(System.in).nextBigInteger();
System.out.println("Enter the IFSC Code");
ifsc = new Scanner(System.in).next();
}
public static void main(String[] args) {
Data d = new Data();
d.getData();
}
}
关于java - 不使用 NextLine 读取字符串中的空格作为输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52211867/
代码: public void addTest(int idUser) throws IOException { String date = null; String tec = nu
我在我的网站上写了一个 php 搜索脚本来检查一个包是否存在于文本文件中(我使用了 file_get_contents 。)它需要用户输入的内容并将其与字符串 'BUILD:' 结合起来,下面是一个文
else if(input==5){ String artist = "Bob"; System.out.print("Artist: "); artist = keyboar
我正在使用一个 Java 加密程序,它提示用户从 A-Z、0-9、句号、逗号、感叹号和空格映射他/她自己的字符串序列。 程序运行如下: 用户输入与此不同序列的字符串: String original=
我正在解决一个java问题,我正在创建一个程序来模拟旧的电视问答节目,你赌上你的生命。游戏节目主持人格劳乔·马克思选择一个 secret 词,然后与参赛者聊了一会儿。如果任一参赛者在句子中使用 sec
我试图通过使用空格作为分隔符将“sisestus”分割成不同的单词,但仅使用 sc.next() 不允许我输入带空格的字符串,所以我读到我应该使用 .nextLine (),但根本不起作用。我该如何解
这个问题已经有答案了: Scanner is skipping nextLine() after using next() or nextFoo()? (25 个回答) 已关闭 4 年前。 我有一个程
我正在使用服务器和客户端,其中服务器发送一个字符串,其中包含未知数量的\n。例如: foo1 \n foo2 \n foo3 或 foo1 \n foo2 在客户端,由于套接字的阻塞性质,我无法尝试/
如果我从 catch block 中删除 input.nextLine(),则会开始无限循环。注释说 input.nextLine() 正在丢弃输入。它究竟是如何做到这一点的? import java
基本上,我正在尝试执行一个while 循环,并继续阅读直到行输入为$。读取时,循环应该退出。 但是,我收到一个运行时异常,如 java.util.InputMismatchException。 代码如
我写了一个基本代码来读取不同的数据类型。但我无法输入字符串作为输入。我错过了什么? public class Main { public static void main(String[] args)
为什么nextLine()方法不起作用?我的意思是,在第二次扫描调用后我无法输入任何句子,因为程序运行到最后并退出。 输入:era时代食品食品正确正确sss sss退出 我应该使用另一个 Scanne
考虑代码: import java.util.*; public class TestClass { public static void main(String[] args) {
我是 java 初学者。我想知道 nextLine() 方法如何丢弃您当前的输入?例如假设以下代码: Scanner input = new Scanner(System.in); int a = i
当我运行我的程序而不是读取字符串并将其存储在 tempAddress 中时,我的程序只是在我输入之前打印下一行。对前两个使用下一个作品,因为我只使用一个词,但第三个词包含多个词,所以需要其他东西,通过
我的猜谜游戏一切正常,但是当涉及到询问用户是否想再玩的部分时,它会重复这个问题两次。但是我发现,如果我将输入法从 nextLine() 更改为 next(),它不会重复问题。这是为什么? 这里是输入和
这个问题已经存在: 关闭 9 年前。 Possible Duplicate: Scanner issue when using nextLine after nextInt 我正在尝试创建一个程序,
这个问题在这里已经有了答案: Scanner is skipping nextLine() after using next() or nextFoo()? (24 个回答) 关闭7年前。 我在尝试使
? 1 2
这个问题已经有答案了: Scanner is skipping nextLine() after using next() or nextFoo()? (25 个回答) 已关闭 6 年前。 f
我是一名优秀的程序员,十分优秀!