Methods Summary |
---|
public static java.lang.String | UpperCaseFirstLetter(java.lang.String s)
if(s == null || s.length() <= 0)
return s;
return s.substring(0, 1).toUpperCase() + s.substring(1);
|
public static java.lang.String | formatSQLException(java.sql.SQLException ex)
Assertion.check(ex);
String s = "SQLException:\n";
do
{
s += "SQLState: " + ex.getSQLState() + "\n";
s += "Message: " + ex.getMessage() + "\n";
s += "Vendor: " + ex.getErrorCode()+ "\n";
s += "\n";
}while( (ex = ex.getNextException()) != null);
return s;
|
public static java.lang.String | getPenultimateDirName(java.lang.String s)
// e.g. input: "a/b/c/d/foobar.txt" output: "d"
if(s == null || s.length() <= 0)
return s;
// must be a plain file name -- return empty string...
if( (s.indexOf('/") < 0) && (s.indexOf('\\") < 0) )
return "";
s = s.replace('\\", '/"); // make life easier for the next steps...
int index = s.lastIndexOf('/");
if(index < 0)
return ""; // can't happen!!!
s = s.substring(0, index); // this will truncate the last '/'
index = s.lastIndexOf('/");
if(index >= 0)
s = s.substring(index + 1);
return s;
|
public static boolean | isHex(java.lang.String s)
// is this the String representation of a valid hex number?
// "5", "d", "D", "F454ecbb" all return true...
// p.s. there MUST be a better and faster way of doing this...
final int slen = s.length();
for(int i = 0; i < slen; i++)
if(isHex(s.charAt(i)) == false)
return false;
return true;
|
public static boolean | isHex(char c)
// is this the char a valid hex digit?
String hex = "0123456789abcdefABCDEF";
int hexlen = hex.length();
for(int i = 0; i < hexlen; i++)
if(hex.charAt(i) == c)
return true;
return false;
|
public static void | main(java.lang.String[] args)
final int len = args.length;
if((len == 1) && args[0].equalsIgnoreCase("toLine"))
testToLine();
else if((len > 1) && args[0].equalsIgnoreCase("isHex"))
testHex(args);
else
usage();
|
public static java.lang.String | makeFilePath(java.lang.String[] strings, boolean addTrailing)A utility to get the Operating System specific path from given array
of Strings.
StringBuffer path = null;
String separator = System.getProperty("file.separator");
if (strings != null)
{
path = new StringBuffer();
for (int i = 0 ; i < strings.length ; i++)
{
String element = strings[i];
if (element == null || element.length () == 0)
{
throw new IllegalArgumentException();
}
path.append(element);
if (i < strings.length - 1)
{
path.append(separator);
}
}
if (addTrailing)
{
path.append(separator);
}
}
return ( path.toString() );
|
public static int | maxWidth(java.util.Vector v)
// find longest String in a vector of Strings...
int max = 0;
if(v == null || v.size() <= 0 || !(v.elementAt(0) instanceof String))
return 0;
for(int i = v.size() - 1; i >= 0; i--)
{
int len = ((String)v.elementAt(i)).length();
if(len > max)
max = len;
}
return max;
|
public static boolean | ok(java.lang.String s)
return s != null && s.length() > 0;
|
public static java.lang.String | padLeft(java.lang.String s, int len)
String ss = "";
if(s == null || s.length() >= len)
return s;
for(int i = len - s.length(); i > 0; --i)
ss += ' ";
return ss + s;
|
public static java.lang.String | padRight(java.lang.String s, int len)
if(s == null || s.length() >= len)
return s;
for(int i = len - s.length(); i > 0; --i)
s += ' ";
return s;
|
public static java.util.List | parseStringList(java.lang.String line)Parses a string containing substrings separated from
each other by the standard separator characters and returns
a list of strings.
Splits the string line into individual string elements
separated by the field separators, and returns these individual
strings as a list of strings. The individual string elements are
trimmed of leading and trailing whitespace. Only non-empty strings
are returned in the list.
return parseStringList(line, null);
|
public static java.util.List | parseStringList(java.lang.String line, java.lang.String sep)Parses a string containing substrings separated from
each other by the specified set of separator characters and returns
a list of strings.
Splits the string line into individual string elements
separated by the field separators specified in sep ,
and returns these individual strings as a list of strings. The
individual string elements are trimmed of leading and trailing
whitespace. Only non-empty strings are returned in the list.
if (line == null)
return null;
StringTokenizer st;
if (sep == null)
st = new StringTokenizer(line);
else
st = new StringTokenizer(line, sep);
String token;
List tokens = new Vector();
while (st.hasMoreTokens())
{
token = st.nextToken().trim();
if (token.length() > 0)
tokens.add(token);
}
return tokens;
|
public static void | prepend(java.lang.String[] ss, java.lang.String what)
for(int i = 0; i < ss.length; i++)
ss[i] = what + ss[i];
|
public static java.lang.String | replace(java.lang.String s, java.lang.String token, java.lang.String replace)
if(s == null || s.length() <= 0 || token == null || token.length() <= 0)
return s;
int index = s.indexOf(token);
if(index < 0)
return s;
int tokenLength = token.length();
String ret = s.substring(0, index);
ret += replace;
ret += s.substring(index + tokenLength);
return ret;
|
public static int | safeLength(java.lang.String s)return the length of the String - or 0 if it's null
if(s == null)
return 0;
return s.length();
|
private static void | testHex(java.lang.String[] args)
System.out.println("StringUtils -- Testing Hex");
for(int i = 1; i < args.length; i++)
System.out.println(padRight(args[i], 16) + " " + (isHex(args[i]) ? "yesHex" : "notHex"));
|
private static void | testToLine()
System.out.println("StringUtils -- Testing toLine()");
String[] ss =
{
null,
"",
"abc\ndef\n",
"abc\ndef",
"abc",
"abc\n",
"abc\n\n",
"q",
"\n\nk\n\nz\n\n",
"sd.adj;ld"
};
for(int k = 0; k < ss.length; k++)
{
String[] s2 = StringUtils.toLines(ss[k]);
System.out.println("String #" + k + ", Number of Lines: " + s2.length);
for(int i = 0; i < s2.length; i++)
System.out.println(s2[i]);
}
|
public static void | testUpperCase()
String[] test = new String[] { "xyz", "HITHERE", "123aa", "aSSS", "yothere" };//NOI18N
for(int i = 0; i < test.length; i++)
{
System.out.println(test[i] + " >>> " + UpperCaseFirstLetter(test[i]));//NOI18N
}
|
public static java.lang.String[] | toLines(java.lang.String s)
if(s == null)
return new String[0];
Vector v = new Vector();
int start = 0;
int end = 0;
for(end = s.indexOf('\n", start); end >= 0 && start < s.length(); end = s.indexOf('\n", start))
{
v.addElement(s.substring(start, end)); // does NOT include the '\n'
start = end + 1;
}
if(start < s.length())
v.addElement(s.substring(start));
String[] ss = new String[v.size()];
v.copyInto(ss);
return ss;
|
public static java.lang.String | toShortClassName(java.lang.String className)
int index = className.lastIndexOf('.");
if(index >= 0 && index < className.length() - 1)
return className.substring(index + 1);
return className;
|
public static java.lang.String | toString(java.util.Properties props)
if(props == null || props.size() <= 0)
return "No entries";
Set entries = props.entrySet();
StringBuffer sb = new StringBuffer();
// first -- to line things up nicely -- find the longest key...
int keyWidth = 0;
for(Iterator it = entries.iterator(); it.hasNext(); )
{
Map.Entry me = (Map.Entry)it.next();
String key = (String)me.getKey();
int len = key.length();
if(len > keyWidth)
keyWidth = len;
}
++keyWidth;
// now make the strings...
for(Iterator it = entries.iterator(); it.hasNext(); )
{
Map.Entry me = (Map.Entry)it.next();
String key = (String)me.getKey();
String val = (String)me.getValue();
sb.append(padRight(key, keyWidth));
sb.append("= ");
sb.append(val);
sb.append('\n");
}
return sb.toString();
|
private static void | usage()
System.out.println("StringUtils -- main() for testing usage:\n");
System.out.println("java netscape.blizzard.util.StringUtils toLine");
System.out.println("java netscape.blizzard.util.StringUtils isHex number1 number2 ...");
|