Tagged Questions
5
votes
4answers
485 views
Why is StringTokenizer deprecated?
The Java documentation doesn't seem to mention anything about deprecation for StringTokenizer, yet I keep hearing about how it was deprecated long ago. Was it deprecated because it had bugs/errors, ...
3
votes
8answers
2k views
Replicating String.split with StringTokenizer
Encouraged by this, and the fact I have billions of string to parse, I tried to modify my code to accept StringTokenizer instead of String[]
The only thing left between me and getting that delicious ...
0
votes
3answers
131 views
How can i show it at first?
I wrote a simple java application, I have a problem please help me;
I have a file (JUST EXAMPLE):
1.TXT
-------
SET MRED:NAME=MRED:0,MREDID=60;
SET BCT:NAME=BCT:0,NEPE=DCS,T2=5,DK0=KOR;
CREATE ...
-2
votes
1answer
36 views
extract string using java StringTokenizer, split or scanner
I want to extract the string between < a: href > and < /a: href> from the following:
< a: href > https://0.0.0.1/abcd/openthis.pdf < /a: href> using StringTokenizer, split or scanner.
...