| Author |
String into byte buffer
|
chella adisesh
Greenhorn
Joined: Oct 10, 2003
Posts: 7
|
|
Hello, Wanted to know how to convert a string into a byte buffer. Also can someone give me links or books to - * converting byte buffer to string. * converting string to bytebuffer. * converting string to string buffer. * converting string to char buffer. Thanks. Chella
|
 |
Wirianto Djunaidi
Ranch Hand
Joined: Mar 20, 2001
Posts: 195
|
|
Check out the javadoc on String StringBuffer especially String.getBytes(), String.getChars() and String(bytes[])
|
 |
Jim Yingst
Wanderer
Sheriff
Joined: Jan 30, 2000
Posts: 18670
|
|
|
Previously you were asking about ByteBuffer and CharBuffer. (Capitalization is important in Java.) You can convert a String to a CharBuffer using CharBuffer.wrap(CharSequence) (note that a String is also a CharSequence) and then you can use a CharsetEncoder to convert the CharBuffer to a ByteBuffer. It's much like the answer to your previous question, but in reverse. Study the APIs for the classes and methods that have been mentioned here; they contain explanations for how each of these works.
|
"I'm not back." - Bill Harding, Twister
|
 |
 |
|
|
subject: String into byte buffer
|
|
|