| | |
How to ouput the tokenized string
Please support our Java advertiser: Programming Forums - DaniWeb Sister Site
Thread Solved |
•
•
Join Date: Oct 2008
Posts: 37
Reputation:
Solved Threads: 0
import javax.swing.*;
public class Tokenize{
public static String s[] = new String[100];
public static void main (String args[]){
String ask = JOptionPane.showInputDialog("Enter:");
isAsk(ask);
}
public static void isAsk(String ask){
StringTokenizer st = new StringTokenizer(ask," ",false);
int input = Integer.parseInt(st.nextToken());
if(input<=10&&input>=0){
System.out.println(input);
}
}
}Here is the sample:
Enter: 1 2 3
I want to output 2, but it only output 1. What will i have to do with my code so that i can output either 1 or 2 or 3. Thank you ahead for the help.
You need to loop your code to print all the tokens. Something like:
Since currently there is no loop, it exits after printing just the first token.
Also note, the
java Syntax (Toggle Plain Text)
while(st.hasMoreTokens()){ // parse every token OR print it OR do whatever }
Also note, the
StringTokenizer class is a legacy class and maintained just for compatability reasons, it's use si discouraged. Use String.split() instead. Get up every morning and take a look at the Forbes' list of richest people. If your name doesn't appear.... GET TO WORK !!!
![]() |
Other Threads in the Java Forum
- Previous Thread: Exception in thread "main" java.lang.NullPointerException error
- Next Thread: program for reading from .csv file shows errors
| Thread Tools | Search this Thread |
911 addball android api append applet application apps array arrays automation binary bluetooth businessintelligence button card chat class classes client code collision component crashcourse css database eclipse ee error event exception fractal free game gis givemetehcodez graphics gui html ide image input integer integration j2me java javadoc javafx javaprojects jni jpanel julia jvm key linux list loan loop machine map method methods migrate mobile netbeans newbie output phone physics print problem program programming project radio recursion reporting robot scanner screen server service set size sms socket software sort sql string swing textfield threads time transfer tree trolltech ubuntu utility windows





