So what is the problem? What does your code above do? One thing I noticed though, is that you're comparing the char "c" variable to -1. Char is unsigned so this will never succeed. I would suggest making c an int and doing the cast to char where you append it to your StringBuffer.
-- Ian
Last edited by irlennard : 08-15-2008 at 06:37 AM.
|