| dlog4j.util.StringUtils
StringUtils | public class StringUtils extends org.apache.commons.lang.StringUtils (Code) | | 字符串工具集合
此类需要JRE 1.4
author: Liudong |
byte2hex | public static String byte2hex(byte[] b)(Code) | | 二行制转字符串
Parameters: b - |
decrypt | public static byte[] decrypt(byte[] src, byte[] key) throws Exception(Code) | | 解密
Parameters: src - 数据源 Parameters: key - 密钥,长度必须是8的倍数 返回解密后的原始数据 throws: Exception - |
encrypt | public static byte[] encrypt(byte[] src, byte[] key) throws Exception(Code) | | 加密
Parameters: src - 数据源 Parameters: key - 密钥,长度必须是8的倍数 返回加密后的数据 throws: Exception - |
hex2byte | public static byte[] hex2byte(byte[] b)(Code) | | |
isEmail | public static boolean isEmail(String email)(Code) | | 判断是不是一个合法的电子邮件地址
Parameters: email - |
replaceIgnoreCase | public static String replaceIgnoreCase(String str, String src, String obj)(Code) | | 大小写无关的字符串替换策略
Parameters: str - Parameters: src - Parameters: obj - |
|
|