| java.lang.Object org.enhydra.xml.Utils
Utils | public class Utils (Code) | | Utility methods for xml jdbc.
author: Zoran Milakovic version: $Id: Utils.java,v 1.1 2006-06-23 10:40:51 sinisa Exp $ |
bytesToHexString | public static String bytesToHexString(byte[] b)(Code) | | This method transform binary object to string object
Parameters: b - is array of bytes which represents binary object string representation of binary object |
hexStringToBytes | public static byte[] hexStringToBytes(String val)(Code) | | This method transform string object to binary object (array of bytes)
Parameters: val - is string representation of binary object binary object |
replaceAll | public static String replaceAll(String input, String forReplace, String replaceWith)(Code) | | Replace all occurence of forReplace with replaceWith in input string.
Parameters: input - Parameters: forReplace - Parameters: replaceWith - String with replaced values |
|
|