(byte[] bByte)
| 38 | |
| 39 | // ת���ֽ�����Ϊ16�����ִ� |
| 40 | private static String byteToString(byte[] bByte) { |
| 41 | StringBuffer sBuffer = new StringBuffer(); |
| 42 | for (int i = 0; i < bByte.length; i++) { |
| 43 | sBuffer.append(byteToArrayString(bByte[i])); |
| 44 | } |
| 45 | return sBuffer.toString(); |
| 46 | } |
| 47 | |
| 48 | public static String GetMD5Code(String strObj) { |
| 49 | String resultString = null; |
no test coverage detected