Is there any disadvantage of using BigInteger?

Is there any performance related disadvantage for using BigInteger.

The reason why is use BigInteger is to convert a byte array to hex string.

I have seen other functions which does the same. but since Biginteger does that in a single line of code i chose it... and now i wanna know any way the performance will be affected by this?

[351 byte] By [xemaa] at [2007-11-27 7:11:07]
# 1
How critical is the performance of a single binary-to-hex conversion?Measure it for yourself.
ejpa at 2007-7-12 19:02:43 > top of Java-index,Core,Core APIs...
# 2
Forget performance, what about correctness? How do you deal with things like leading zeroes and negative numbers? If your current implementation spans exactly one line I doubt you have dealt with these issues.
jsalonena at 2007-7-12 19:02:43 > top of Java-index,Core,Core APIs...