Is there in the JDK or Jakarta Commons (or anywhere else) a method that can parse the output of Arrays.toString, at least for integer arrays?
int[] i = fromString(Arrays.toString(new int[] { 1, 2, 3} );
|
Is there in the JDK or Jakarta Commons (or anywhere else) a method that can parse the output of Arrays.toString, at least for integer arrays?
|
|||
|
|
|
Pretty easy to just do it yourself:
|
||||
|
|
|
You can also use split/join from Apache Commons' StringUtils |
|||
|
|