I'm trying to pass ArrayBuffer to Java applet, but cannot guess how to do it. It's pretty easy to handle standard JS arrays and they work fine for Sun's plugin (not for IcedTea). I can pass ArrayBuffer as Object or JSObject, but can't get to the array's data.

Any ideas? Thanks.

link|improve this question
Instead of using an array, why do you use a string containing all the values (coma separated value type)? – Amine May 30 '11 at 17:09
@Amine The idea is to handle different JS types in applet. And I try to minimize any "JS-side" data converting in favour of LiveConnect type conversion. Typed arrays are ideal for binary data processing and I want to be able to pass them to applet and then get back from it. – trollixx May 30 '11 at 18:08
@trollixx i see, did check the following ific.uv.es/informatica/manuales/ClientGuideJS13/lc.html#1037078? – Amine May 30 '11 at 18:34
@Amine Yes, I saw this and used implementing methods for other types, but typed arrays are relatively new and I didn't find any info about using them with LiveConnect... – trollixx May 30 '11 at 19:14
@trollixx : out of curiosity why do you rely on javascript while you could use the power of the applet ? – Amine May 30 '11 at 19:25
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.