Results 1 to 4 of 4
- 08-20-2012, 06:48 PM #1
Member
- Join Date
- Apr 2012
- Posts
- 7
- Rep Power
- 0
Problem using Scanner and JOptionPane simultaneously
Hi,
I am trying to use JOptionPane for some input. It works fine until I add a Scanner before the JOptionPane for some other input. It seems my Scanner is messing up the JOptionPane but I can't figure out why. (The scanner has to be before the JOptionPane)
Can someone please help?
Here is my code:
import java.util.Scanner;
import javax.swing.JOptionPane;
public class JOptionPaneTester {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner in = new Scanner(System.in);
System.out.println("Enter something");
if (in.hasNext()) {
String inStr = in.next();
}
System.out.println("before JOptionPane");
String input = JOptionPane.showInputDialog(null, "Enter the deposit amount");
System.out.println("after JOptionPane");
}
}
Thanks in advance!!
Mitch
-
Re: Problem using Scanner and JOptionPane simultaneously
Use in.nextLine() not in.next() in order to handle the end of line token.
- 08-20-2012, 07:43 PM #3
Member
- Join Date
- Apr 2012
- Posts
- 7
- Rep Power
- 0
Re: Problem using Scanner and JOptionPane simultaneously
Thanks for the prompt reply but the JOptionPane still does not appear (behavior of the program remains the same). My code gets to the part where it prints out "before JOptionPane" but the cursor sits in the console like it still expects me to input something and even if I input something the cursor stays in the console forever.
Thanks!
Mitch
- 08-20-2012, 07:57 PM #4
Member
- Join Date
- Apr 2012
- Posts
- 7
- Rep Power
- 0
Similar Threads
-
JOptionPane problem
By rokit boy in forum New To JavaReplies: 3Last Post: 02-05-2012, 08:32 PM -
Problem with Array and Joptionpane
By tkas in forum New To JavaReplies: 3Last Post: 11-28-2011, 01:12 AM -
Problem with JOptionPane
By chrisLU5 in forum New To JavaReplies: 8Last Post: 05-05-2011, 10:04 PM -
Converting Scanner input to JOptionPane
By Mideoan in forum New To JavaReplies: 1Last Post: 03-09-2011, 11:26 PM -
JOptionPane problem
By MomenT in forum New To JavaReplies: 22Last Post: 10-02-2008, 05:56 PM


1Likes
LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks