[jug-discussion] Help with uuencode

2004-11-02 Thread Thomas Hicks
There's got to be something like this already out there. I need to uuencode (not Base64) a data file (or stream or byte array). Someone out there HAS to have written a public-domain Java class/method to do this already but all I can find are commercial ones. Is this buried somewhere in the

Re: [jug-discussion] Help with uuencode

2004-11-02 Thread Erik Hatcher
Looks like there are bits built into Java itself: sun.misc.UUEncoder It would be nice if a clean wrapper for it was part of Jakarta Commons Codec though. Erik On Nov 2, 2004, at 7:59 PM, Thomas Hicks wrote: There's got to be something like this already out there. I need to uuencode

Re: [jug-discussion] Help with uuencode

2004-11-02 Thread Thomas Hicks
At 06:10 PM 11/2/2004, you wrote: Looks like there are bits built into Java itself: sun.misc.UUEncoder Thanks Eric. I saw this but couldn't find any docs on how to use it. It would be nice if a clean wrapper for it was part of Jakarta Commons Codec though. Agreed! I looked here also but no