> I'm playing around with some of the digesting classes to see if I can't
> write a quick file comparer(diff) utility for practice. What I am doing
[quoted text clipped - 10 lines]
> getBytes to equivilent or the exact same string should give the same
> byte[] result wrong?
I would expect getBytes to give different results on different platforms
because that method uses the default encoding. People using getBytes to
send network messages often find the server and client have different
default encoders. However, I don't see how it would give different results
locally. Whatever getBytes produces must be able to be decoded to the same
source string. Can you post a short code example?
Cheers,
Matt Humphrey matth@ivizNOSPAM.com http://www.iviz.com/
Scott.R.Lemke@gmail.com - 21 Jun 2006 20:16 GMT
> > I'm playing around with some of the digesting classes to see if I can't
> > write a quick file comparer(diff) utility for practice. What I am doing
[quoted text clipped - 20 lines]
> Cheers,
> Matt Humphrey matth@ivizNOSPAM.com http://www.iviz.com/
Blah, nevermind, I was looking at memory addresses(knew I should have
listened to my gut). I'm so used to having my print functions know how
to print byte arrays.