Added parseShortArray().

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1046 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2003-02-03 18:26:38 +00:00
parent 35b5eb3477
commit 0a8bbbb2aa
@@ -1,5 +1,5 @@
//
// $Id: StringUtil.java,v 1.52 2003/01/31 02:27:01 mdb Exp $
// $Id: StringUtil.java,v 1.53 2003/02/03 18:26:38 mdb Exp $
//
// samskivert library - useful routines for java programs
// Copyright (C) 2001 Michael Bayne
@@ -627,6 +627,34 @@ public class StringUtil
}
}
/**
* Parses an array of short integers from their string representation.
* The array should be represented as a bare list of numbers separated
* by commas, for example:
*
* <pre>
* 25, 17, 21, 99
* </pre>
*
* Any inability to parse the short array will result in the function
* returning null.
*/
public static short[] parseShortArray (String source)
{
StringTokenizer tok = new StringTokenizer(source, ",");
short[] vals = new short[tok.countTokens()];
for (int i = 0; tok.hasMoreTokens(); i++) {
try {
// trim the whitespace from the token
String token = tok.nextToken().trim();
vals[i] = Short.parseShort(token);
} catch (NumberFormatException nfe) {
return null;
}
}
return vals;
}
/**
* Parses an array of integers from it's string representation. The
* array should be represented as a bare list of numbers separated by