Tagged Questions
5
votes
4answers
634 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
2answers
64 views
I want to search for a string using StringTokenizer but the string I'm looking for has a delimiter in it - Java
I have an external file named quotes.txt and I'll show you some contents of the file:
1 Everybody's always telling me one thing and out the other.
2 I love criticism just so long as it's unqualified ...
3
votes
2answers
2k 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:
...
3
votes
11answers
2k 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 ...
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 ...
2
votes
3answers
28 views
Why is this string tokenizer making me cast to string?
I Think I broke this down to the most basic form. If not then I apologize and will try to edit it. Why in my while loop do I need to cast String for the FirstName if I already set the variable to be a ...
2
votes
1answer
58 views
tokenize string
I got a string with the following format : yyyyMMdd_HHmm_ss_unitCode_(status).
I need to map each component to a property of a dedicated class.
I thought of defining my token with a regular ...
2
votes
1answer
82 views
StringTokenizer, JSON and comma's
I have a problem reading in strings with comma's within a JSON object within my Android project. A working JSON string is below:
{"success": "[TG2301_Stoke Holy Cross, TF7439_Thornham Corner, ...
2
votes
5answers
93 views
spliting string into an array of ints
I have a string s="1,2,3,4,5" . I am using the split() method to split the string then i want to store it into an array of ints.
I tried doing the following but it doesnt work.
int ...
2
votes
5answers
131 views
Private Methods Over Public Methods
I was examining the StringTokenizer.java class and there were a few questions that came to mind.
I noticed that the public methods which are to be used by other classes invoked some private method ...
2
votes
4answers
1k 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 ...
2
votes
3answers
2k 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);
...
2
votes
5answers
1k 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
382 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 ...
1
vote
3answers
53 views
string tokenizer stopping after first line
I have a text file I am trying to break up with string tokenizer. Here is a few lines of the text file:
Mary Smith 1
James Johnson 2
Patricia Williams 3
I am trying to break up into first name, ...
1
vote
2answers
155 views
Java - Saving StringTokenizer into arrays for further processing in other methods
I've been coding Perl and Python a lot and this time I got an assignment to code in Java instead. So I'm not too familiar with handling data in Java.
My task involves having a input file where I need ...
1
vote
2answers
347 views
RegEx split string with on a delimeter(semi-colon ;) except those that appear inside a string
I have a Java String which is actually an SQL script.
CREATE OR REPLACE PROCEDURE Proc
AS
b NUMBER:=3;
c VARCHAR2(2000);
begin
c := 'BEGIN ' || ' :1 := :1 + :2; ' || ...
1
vote
3answers
126 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
73 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 ...
1
vote
2answers
283 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 ...
1
vote
1answer
126 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 ...
1
vote
4answers
536 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 ...
1
vote
7answers
2k 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 ...
1
vote
4answers
104 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
vote
1answer
110 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
680 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 ...
1
vote
3answers
725 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.
...
0
votes
1answer
63 views
Parsing text file line by line to array using BufferedInputStream with RTL characters in Java
Guys I need to understand something:
the \n comes at the begining of a new line currect?
If so, I am trying to parse a file that has RTL characters in it and they are at the begining of a line, so:
...
0
votes
3answers
60 views
Null Pointer Exception, when trying to replace characters from file
I am trying to replace character ( and ) from a file with a comma so that I can use the code below for entering data in to a JTable from a csv file. I have tried to do this by reading the file with a ...
0
votes
1answer
47 views
java StreamTokenizer
I'm using the method quoteChar('"') to treat the strings.
The usual escape sequences such as "\n" and "\t" are recognized and converted to single characters as the string is parsed.
Is there any way ...
0
votes
4answers
48 views
how do you get String Tokenizer to ignore text?
I have this code:
public void readTroops() {
File file = new File("resources/objects/troops.txt");
StringBuffer contents = new StringBuffer();
BufferedReader reader = null;
try {
...
0
votes
3answers
74 views
Extracting token from a string
I've a some strings like that "paddington road" and I need to extract the word "road" from this string. How can I do that?
The problem is that I need to process a list of streets and extract some ...
0
votes
1answer
36 views
StringTokenizer does not seem to work in my program - Java
I am making a program about client/server programming in which the user will input a string in the console, and the program will search through every line of a .txt file for that string, and outputs ...
0
votes
3answers
69 views
writing an interpreter in java using multiple arraylists or arrays with stringtokenizer
I'm currently working on an assignment to create a basic interpreter with 8 keywords (case insensitive) and the 4 arithmetic operators. A program in this language would look something like this ...
0
votes
3answers
57 views
parsing the content of a line using java in eclipse
Can anyone give me a example for parsing the content of the file and display the particular words from that file after the delimiters using the StringTokenizer class in java.
thank you all,
actually ...
0
votes
2answers
84 views
skip inserting first line of csv file
I have a method that takes data from a .csv file and puts it into an array backwards
(first row goes in last array slot) however I would like the first row in the .csv file to not be in the array. ...
0
votes
4answers
90 views
String Tokenizing in java
I need to tokenize a string using a delimiter.
StringTokenizer is capable of tokenizing the string with given delimiter. But, when there are two consecutive delimiters in the string, then it is not ...
0
votes
2answers
68 views
string tokenizer wrong usage in java
I believe I am not using correctly String Tokenizer. Here is my code:
buffer = new byte[(int) (end - begin)];
fin.seek(begin);
fin.read(buffer, 0, (int) (end - ...
0
votes
3answers
124 views
How to randomly access nth element in StringTokenizer
Is there anyway we can directly access a certain(lets say 20th) element in a stringTokenizer. Every now and then I need only a certain element from it and do not need others, yet I have to traverse ...
0
votes
4answers
48 views
How to extract the proper String?
I have a string like this:
14.809180,56.876968,0.000000 14.808170,56.877048,0.000000 14.805100,56.877220,0.000000 14.804130,56.877338,0.000000
i.e, at the beginning there's a space and also after ...
0
votes
2answers
76 views
0
votes
2answers
62 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, ...
0
votes
4answers
1k 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 ...
0
votes
2answers
185 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
64 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 = ...
0
votes
3answers
1k 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
119 views
ERROR HANDLING for my String tokenizer
else if (sCarRental.equals("EP")) {
sStationCode = st.nextToken().trim();
sName=st.nextToken().trim();
sLocationCode = st.nextToken().trim();
...
0
votes
2answers
332 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
2answers
540 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
111 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 ...