PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Pastebin launched a little side project called
HostCabi.net
, check it out ;-)
Don't like ads?
PRO users
don't see any ads ;-)
Public Pastes
Untitled
0 sec ago
Error Log report
0 sec ago
Untitled
0 sec ago
Untitled
3 sec ago
World Marker Macro
5 sec ago
Untitled
16 sec ago
Untitled
24 sec ago
Untitled
28 sec ago
tokenizertest1
By:
ace
on
Feb 6th, 2010
| syntax:
None
| size: 0.31 KB | hits: 19 | expires: Never
download
|
raw
|
embed
|
report abuse
|
print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
public class TokenizerTest
{
private StringTokenizer tokenizerTest;
public TokenizerTest()
{
tokenizerTest = new StringTokenizer("This is a test");
while (tokenizerTest.hasMoreTokens())
{
System.out.println(tokenizerTest.nextToken());
}
}
}
create a
new version
of this paste
RAW Paste Data
public class TokenizerTest { private StringTokenizer tokenizerTest; public TokenizerTest() { tokenizerTest = new StringTokenizer("This is a test"); while (tokenizerTest.hasMoreTokens()) { System.out.println(tokenizerTest.nextToken()); } } }