本文介绍了Android中DatatypeConverter.printHexBinary(byte [] array)和DatatypeConverter.parseHexBinary(String str)的替代的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

DatatypeConverter.printHexBinary(byte [] array) DatatypeConverter.parseHexBinary(String str)在Android中。 Android没有 java.xml.bind.DatatypeConverter ...

what are the alternative of DatatypeConverter.printHexBinary(byte[] array) and DatatypeConverter.parseHexBinary(String str) in Android. Android don't have classDef of java.xml.bind.DatatypeConverter...

推荐答案

使用Apache

You are probably better off using the hexadecimal encoding/decoding found in the Apache commons codec library. Please make sure you are using the correct version of the library though, for more information look here

这篇关于Android中DatatypeConverter.printHexBinary(byte [] array)和DatatypeConverter.parseHexBinary(String str)的替代的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 23:38