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

I am using a JavaScript to Applet object called JSObject and I get from my JSObject the value of a java object that I stored in my html page.

The java object is a byte[] but JavaScript converts it to a String.

So in the HTML page: object value = [B@ca0b6 In the Applet, the String value is also [B@ca0b6

Is there a way for me to convert this String value of [B@ca0b6 into the byte representation? I don't mean String.getByte() because that will convert the STRING [B@ca0b6 into byte[] data.

Thanks!

share|improve this question
There are no objects in HTML. Do you mean the object you saved in JS? – Tasawer Khan Dec 30 '10 at 20:21
Yes, I've updated this answer to something more understandable: stackoverflow.com/questions/4566346/… – Vedar Dec 30 '10 at 21:19

2 Answers

up vote 2 down vote accepted

No, you can't. This is the default toString() method, which does not output anything of the array contents. It contains only the type of the object (array of bytes) and the memory address within the JVM, in hex.

If you want to convert your array to String properly, use Arrays.toString(array)

share|improve this answer
Interesting, I'll need to find a different approach. Thanks! – Vedar Dec 30 '10 at 20:50
I've created a new question to try to solve this approach: stackoverflow.com/questions/4566346/… Thanks! – Vedar Dec 30 '10 at 21:19

You can use:

new String(bytearray, "UTF-8")

(change UTF-8 to something else (e.g., ISO-8859-1) if your bytes are not UTF-8.)

share|improve this answer
I think he doesn't want this. – Bozho Dec 30 '10 at 20:24
@Bozho: It's too bad the question isn't more explicit in what the OP wants. :-( Both your answer and mine are correct, depending on how the question is interpreted. – Chris Jester-Young Dec 30 '10 at 20:26
I assumed the "string" interferes not because it consists of the bytes, but because it is outputted as a string in html – Bozho Dec 30 '10 at 20:28

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.