StringTokenizer(String str) constructor from StringTokenizer has the following syntax.
public StringTokenizer(String str)
In the following code shows how to use StringTokenizer.StringTokenizer(String str) constructor.
/*from w ww. j ava 2s .c o m*/ import java.util.StringTokenizer; public class Main { public static void main(String[] args) { // with delimeter StringTokenizer st = new StringTokenizer("tutorial/from/java2s.com"); // checking next token System.out.println("Next token is : " + st.nextToken("/")); System.out.println("Next token is : " + st.nextToken("/")); System.out.println("Next token is : " + st.nextToken("/")); } }
The code above generates the following result.