You need to loop your code to print all the tokens. Something like:
while(st.hasMoreTokens()){
// parse every token OR print it OR do whatever
}
Since currently there is no loop, it exits after printing just the first token.
Also note, the StringTokenizer class is a legacy class and maintained just for compatability reasons, it's use si discouraged. Use String.split() instead.