Jun 11, 2003 #1 LucyL Technical User Joined Feb 20, 2002 Messages 113 Location US Hi How do you covert a String to a StringBuffer?
Jun 11, 2003 #2 FredrikN Programmer Joined Jan 5, 2001 Messages 60 Location SE One way is StringBuffer strBuff = new StringBuffer(); strBuff.add(youStringObject); Upvote 0 Downvote
Jun 11, 2003 #3 FredrikN Programmer Joined Jan 5, 2001 Messages 60 Location SE Opps, sorry there is no add method for the StringBuffer Use append instead. Upvote 0 Downvote
Jun 11, 2003 Thread starter #4 LucyL Technical User Joined Feb 20, 2002 Messages 113 Location US Thank you! Upvote 0 Downvote