Tagged Questions
1
vote
4answers
46 views
How to retrieve portion of number that's within parenthesis in Java?
For part of my Java assignment I'm required to select all records that have a certain area code. I have custom objects within an ArrayList, like ArrayList<Foo>.
Each object has a String ...
0
votes
2answers
197 views
Reading CSV file without third-party libraries
I'm trying to read a csv file into either an ArrayList or a String [][] array. In this I'm trying to read it into a list and then form the list, using a tokenizer, into an array. The csv file have 7 ...
0
votes
1answer
310 views
Using Tokenizer with ArrayLists in Java
I am trying to take an ArrayList of strings and separate it so that i can extract a title from each line.
Here is the contents of the ArrayList:
Tom Sawyer;Twain, Mark;1972;8.50;f;
Leaves of ...
-1
votes
5answers
2k views
Adding tokens from .csv file to ArrayList in Java
I've been having trouble creating an ArrayList in Java from tokens that I get from a .csv file. I've been trying to figure it out for hours with no success. Without creating an ArrayList, all my ...
0
votes
3answers
381 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 ...
-3
votes
1answer
244 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");
...