String text = '[["item1","item2","item3"], ["some", "item"], ["far", "out", "string"]]';
I would like to iterate over each individual ArrayList. I don't know how to turn that string into appropriate ArrayList object.
I would like to iterate over each individual ArrayList. I don't know how to turn that string into appropriate ArrayList object. |
||||
|
This syntax looks like a subset of JSON, and I would guess that the client side is actually encoding it as JSON. Assuming that is true, the simplest approach will be to use an off-the-shelf JSON parser, and some simple Java code to convert the resulting objects into the form that your code requires. Sure, you could implement your own parser by hand, but it is probably not worth the effort, especially if you have to deal with string escaping, possible variability in whitespaces and so on. Don't forget that if you implement your own parser, you NEED TO IMPLEMENT UNIT TESTS to make sure that it works across the full range of expected valid input, and for invalid input as well. (Testing the cases of invalid input is important because you don't want your server to fall over if some hacker sends requests containing bad input.) Before you go any further, you really need to confirm the exact syntax that the client is sending you. Just looking at an example is not going to answer that. You either need a document specifying what the syntax is, or you need to look at the client / application source code. |
|||||||||
|
|
Here's a simple parser, it should deal with all kinds of abusive nesting and will be robust to single and double quotes -- but it won't care if you mix them edit: added comments, and now it deals with escaped quotes in strings. (and now improved string token handling even more)
Just a couple of notes: this won't enforce your syntax to be correct, so if you do something goofy with the quotes, like I described, it might still get parsed as (un)expected. Also, I don't enforce commas at al, you don't even need a space between the quotes, so |
|||||||
|
|
|
Since you are using a string that looks like JSON, I would just use a JSON parser. One of the simplest to uses is gson. Here is an example using gson:
Here is the gson site: http://code.google.com/p/google-gson/ |
|||
|
|
|
You need to build a parser by hand. It's not hard, but it will take up time. In the previous comment you said you want an ArrayList of ArrayList... hmmm... good Just parse the string char by char and recognize each token by first defining recursive parsing rules. Recursive descendant parser rules are usually graphical, but I can try to use ABNF for you
Another approach is to use Regular Expressions. Here are a couple of samples. First capture outer elements by
The above regex capture everything from '[' to the first ']', but you need to modify it or cut the brackets from your string (just drop first and last char) Then capture inner elements by
Simple as the above |
|||||||
|
String[][] text = {{"item1","item2","item3"}, {"some", "item"}, {"far", "out", "string"}};If so, it's trivial. If not, you have to do some parsing (Is this homework)? – Jim Garrison Oct 10 '10 at 1:25