2

我正在使用它执行一些加密

String encodedString = Hex.encodeHexString(s.getBytes("ISO-8859-1"));

. 我在android中使用了commons-codec-1.8.jar。

它的显示错误

06-21 12:43:04.309: E/AndroidRuntime(1667): Caused by: java.lang.NoSuchMethodError: org.apache.commons.codec.binary.Hex.encodeHexString 

请帮忙。

4

1 回答 1

2

尝试

String encodedString = new String(Hex.encodeHex(s.getBytes("ISO-8859-1")));
于 2013-06-21T08:55:10.627 回答