Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any function in Java that converts a string to a byte array?

share|improve this question
Duplicate of stackoverflow.com/questions/140131/… – Stephen C Dec 16 '09 at 10:12
duplicate and incomplete... – Carlos Heuberger Dec 16 '09 at 16:01
possible duplicate of Convert string to byte[] – user658042 Aug 28 '12 at 15:55

3 Answers

up vote 5 down vote accepted

Yes: String.getBytes. You really, really want to specify the character encoding when you do so though - using the platform default encoding is almost always the wrong thing to do.

Ideally, it's best to specify the encoding via a Charset - that way you don't need to worry about the UnsupportedEncodingException which can be thrown by the overload of getBytes which just takes a String with the character encoding name as an argument.

EDIT: Based on your comment, it looks like you want to parse a hex string into a byte array. (It would have been useful to say so in your question.) String.getBytes is inappropriate for this - I don't believe there's anything which does this in the standard libraries, but the Apache Commons Codec library makes it pretty easy:

byte[] data = Hex.decodeHex(text.toCharArray());
share|improve this answer
for a hex string ? – silverkid Dec 16 '09 at 10:05
@silverkid: You mean you want to parse a string of hex digits into a byte array? Editing... – Jon Skeet Dec 16 '09 at 10:07
yes i have a string of hex digits that i want to convert to byte array – silverkid Dec 16 '09 at 10:08
for example my string is 95A8EE8E89979B9EFDCBC6EB9797528D – silverkid Dec 16 '09 at 10:09
1  
Where can encoding issues not be a concern? If you don't care about the output, why bother calling the method? I'd also question the wisdom of trusting performance advice from 12 years ago... – Jon Skeet Dec 16 '09 at 13:55
show 1 more comment

String.getBytes()?

share|improve this answer

Have you tried?

"whatever".getBytes()
share|improve this answer
3  
It's almost never a good idea to use the platform default encoding. – Jon Skeet Dec 16 '09 at 10:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.