StringTokenizer is a Java class that breaks a string into tokens.

learn more… | top users | synonyms

1
vote
3answers
369 views

Java Performance issue for long length StringTokenizer

I have a program that read and process data in a raw text String using StringTokenizer Originally the StringTokenizer contains about 1,500 tokens and the program works fine. However the raw content ...
1
vote
1answer
513 views

how to seperate a csv file using commas if it has null values and we need data corresponding to upper column?

My code is BufferedReader fileReader = new BufferedReader(new FileReader(strFileName)); while ((strLine = fileReader.readLine()) != null) { // [2011.06.28] based on ...
14
votes
4answers
16k 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, ...
0
votes
1answer
1k views

How to store a string into HashMap using StringTokenizer

String input = "key1=value1&key2=value2&key3=value3&key4=value4&key5=value5"; How can I store the key-value pairs into a HashMap object using StringTokenizer? Please help me. Thanks ...
0
votes
0answers
134 views

Which is slower, StringTokenizer or SQLite insert

I'm making a flashcard app, that has about 1000 words in 6 different languages (total 6000 words). They initially are in a text file, and when the app first runs, I install into the SQLite database ...
0
votes
2answers
259 views

StringTokenizer method equivalence

Why do hasMoreElements and hasMoreTokens return the same value?
0
votes
2answers
101 views

String Tokenizer issue

AM using string tokenizer to delimit the string response by ^ 12/30/2011 12:00:00 AM^President^^^159^True^True^True^True^True^False^False^True^True^3/18/2011 12:00:00 AM^True^Jujama, ...
-3
votes
1answer
246 views

Problem in java code [closed]

How to add tokens to an arraylist in java? I want to add tokens to an array list. StringTokenizer st = new StringTokenizer(line, ":Mode set - Out of Service In Service"); ...
2
votes
3answers
3k views

Parsing Data from CSV to Array in Java

I'm trying to import a CSV file into an array that I can use within a Java program. The CSV file has successfully imported itself and the output appears on Terminal but it throws the error: Exception ...
0
votes
3answers
1k views

Caused by: java.util.NoSuchElementException

Hello all i am working with following code code is work fine with below string StringTokenizer st = new StringTokenizer("abc,koch, Ranchi, zalkhand, NY, 10001, India"); but when i remove any ...
0
votes
5answers
356 views

How to seperate state, city, zipcode,contry etc. from address string?

I want to separate street, city, state, country, zip code String = Kanaka, Ranchi, zalkhand, 10001, India public class Test extends Activity { /** Called when the activity is first created. */ ...
1
vote
1answer
355 views

Why are foreign characters not read using inputStream?

I have a text file which contains data I need to preload into a SQLite database. I saved in in res/raw. I read the whole file using readTxtFromRaw(), then I use the StringTokenizer class to process ...
0
votes
4answers
4k views

Error whilst using StringTokenizer on text file with multiple lines

I'm trying to read a text file and split the words individually using string tokenizer utility in java. The text file looks like this; a 2000 4 b 3000 c 4000 d 5000 Now, what I'm trying to ...
1
vote
1answer
267 views

stringtokenizer and an unknown variable type

I’m currently working on a project in which I stream in a text document and tokenize it. The only problem is the types in the text document is unknown, is there any way to check what variable type it ...
0
votes
2answers
438 views

Precision error when parsing a double variable using StringTokenizer in Java

I'm using the StringTokenizer class to read a text file. In the text file, there's a couple of double values. interest = Double.parseDouble(aString.nextToken()); System.out.println(interest); It ...
0
votes
1answer
86 views

Parsing a string-what should be the end-index for the newline?

Your request for ... Good morning Mr Praneel PIDIKITI you have succ..... This is my string i want to parse this string in order to get the value Praneel PIDIKITI i am using int begin_index = ...
1
vote
4answers
3k views

Java How to Convert Token to String?

Cant seem to figure out how to convert a Token (StringTokenizer) into a String. I have a String[] of keywords, and I read in multiple lines of text from a text file. StringTokenizer is used to chop ...
4
votes
3answers
4k views

how to split strings in objective c

How to split a string in objective-C? I am working on an short application that contains a date picker. I do display date get it from date picker and display it through a label. My main question is ...
3
votes
9answers
25k views

How to find a whole word in a String in java

I have a String that I have to parse for different keywords. For example, I have the String: "I will come and meet you at the 123woods" And my keywords are '123woods' 'woods' I should report ...
0
votes
3answers
5k views

How does the java “ stringtokenizer.nextToken(delimiter); ” work?

What i mean is what string values are accepted as delimiters? this is because i keep trying to use a string composed of several different characters but the program just seems to ignore it as just ...
0
votes
1answer
256 views

ERROR HANDLING for my String tokenizer

else if (sCarRental.equals("EP")) { sStationCode = st.nextToken().trim(); sName=st.nextToken().trim(); sLocationCode = st.nextToken().trim(); ...
1
vote
4answers
157 views

How to make “this, string format” into two tokens (“this” and “string format”)

Im reading in a file and each line is as follows Derek Simons, Jason baker Jack Smith, Rob Thomson The problem is with my tokenizer StringTokenizer st = new StringTokenizer(line, ","); ...
-1
votes
1answer
226 views

parse CSV file .. problem with managing primary key?

i just created a java file to parse a csv files and saved them into an oracle database.. but i need a field ID which acts as a primary key.. and i am a bit confused abt looping..
0
votes
2answers
652 views

Infinite Loop in Java

So I'm trying to look at an input, and count words that fit a certain criteria (or rather, excluding words that I don't want to count). The error is in the following code: BufferedReader br; ...
0
votes
3answers
293 views

How to use “enter” to separate input tokens in C?

Example user input: abcd enter efgh enter I want to extract the strings separated by presses of the enter key.
0
votes
2answers
1k views

java StringTokenizer - can nextToken return null?

Is there any case where StringTokenizer.nextToken will return null? I'm trying to debug a NullPointerException in my code, and so far the only possibility I've found is that the string returned from ...
0
votes
4answers
132 views

whats wrong with this code?

I am reading contents from files of a directory. I have to segregate the files according to their names and then read their contents. When I run the code simply without reading the contents, all the ...
0
votes
2answers
937 views

Consecutive Delimiters in StringTokenizer

I have to tokenize the following String 12/12/2010:{content1:[{xyz,abc}],13/12/2010:{content2:[{xyz,abc},{content3:[{aa,bb}]}] I nee to split up the above string if it has }] consequtively. So I ...
1
vote
1answer
184 views

java token if statement

I have a problem with an ifstatement in a StringTokenizer method i think it is due to it being a char array, I have tryed to convert it but it seems not to work any help would be aprecheated thanks ...
1
vote
4answers
1k views

Ignore parentheses with string tokenizer?

I have an input that looks like: (0 0 0) I would like to ignore the parenthesis and only add the numbers, in this case 0, to an arraylist. I am using scanner to read from a file and this is what I ...
0
votes
3answers
582 views

Better to use regex or Stringtokenizer to find author and book title in this: William Faulkner - 'Light In August'

Is it better to use regex or Stringtokenizer to separate the author and title in this string: William Faulkner - 'Light In August' Is this the simplest regex that would work? Pattern pattern = ...
3
votes
5answers
10k views

How to get numbers out of string?

I'm using a Java StreamTokenizer to extract the various words and numbers of a String but have run into a problem where numbers which include commas are concerned, e.g. 10,567 is being read as 10.0 ...
3
votes
3answers
3k views

Tokenize problem in Java with separator “. ”

I need to split a text using the separator ". ". For example I want this string : Washington is the U.S Capital. Barack is living there. To be cut into two parts: Washington is the U.S Capital. ...
4
votes
3answers
6k views

Java StringTokenizer, empty null tokens

I am trying to split a string into 29 tokens..... stringtokenizer won't return null tokens. I tried string.split, but I believe I am doing something wrong: String [] strings = line.split(",", 29); ...
0
votes
1answer
342 views

StreamTokenizer Iterator Adapter help

I have this StreamTokenizer Iterator Adapter that is suppose to create a Tokenizer Iterator Index Builder then build the index from a STIA wrapped around a StreamTokenizer. I am having trouble ...
0
votes
2answers
138 views

stringtoList issue

I have a stringtoList ArrayList that needs to return tokens from a StreamTokenizer but the s.sval is not compiling at run-time, can anyone help me with this problem: private List<Token> ...
2
votes
1answer
342 views

Token replacement

I currently implement a replace function in the page render method which replaces commonly used strings - such as replace [cfe] with the root to the customer front end. This is because the value may ...
2
votes
5answers
2k views

StringTokenizer problem of tokenizing

String a ="the STRING TOKENIZER CLASS ALLOWS an APPLICATION to BREAK a STRING into TOKENS.  "; StringTokenizer st = new StringTokenizer(a); while (st.hasMoreTokens()){ ...
2
votes
1answer
883 views

trouble with StringTokenizer

I'm getting the following error message and I can't seem to figure out the problem. Would really appreciate any help. The error message reads as:- BaseStaInstance.java:68: cannot find symbol symbol ...
3
votes
2answers
7k views

Using string tokenizer to set create arrays out of a text file?

Hey. You may have recently seen a post by me looking for help, but I did it wrong before, so I am going to start fresh and begin at the basics. I am trying to read a text file that looks like this: ...
0
votes
3answers
138 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 ...
-1
votes
2answers
381 views

Why is this StringTokenizer not tokenizing properly following the second time?

I want to parse the following using StringTokenizer for every string matching agent>. I tried it using the code like this. Where I am going wrong? StringTokenizer stringtokenizer=new ...
2
votes
5answers
5k views

Does PL/SQL have an equivalent StringTokenizer to Java's?

I use java.util.StringTokenizer for simple parsing of delimited strings in java. I have a need for the same type of mechanism in pl/sql. I could write it, but if it already exists, I would prefer to ...
0
votes
3answers
3k views

How to call split(token) on a string that does not contain the token without causing an error?

I have two types of strings as the IDs of elements in my HTML markup: Dates: "april-23" "march-20" and season names: "springtime" "winter" The dates have a dash separating the month and the ...
3
votes
10answers
4k views

How to replace tokens in a string without StringTokenizer

Given a string like so: Hello {FIRST_NAME}, this is a personalized message for you. Where FIRST_NAME is an arbitrary token (a key in a map passed to the method), to write a routine which would ...
2
votes
4answers
5k views

C# Tokenizer - keeping the seperators

I am working on porting code from JAVA to C#, and part of the JAVA code uses tokenizer - but it is my understanding that the resulting array from the stringtokenizer in java will also have the ...
4
votes
9answers
5k 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 ...

1 2 3 4