#Utilities for dealing with Strings and String conversions
Introduction
Strings are grand. Don't be afraid of Strings. Computers are fast, and Strings are convenient and easy to use and understand.
Here, we avoid some of the try/catch antipatterns of conversions, as well.
Some of the Methods
public static String encodeBase64(byte[] clear)
public static String repeat(String s,int n)
public static Map<String, String> queryToMap(String cgiQuery)
public static boolean stringToBoolean(String s)
public static int stringToInt(String s)