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