Login
Register
Home
Q&A
Questions
Tags
1.2k
questions
1.4k
answers
361
comments
339
users
Categories
All categories
Send feedback
Sidebar
Declare and initialize a byte[] in QIE?
+1
vote
393
views
asked
Oct 10, 2013
by
rich-c-2789
(
17.6k
points)
Declare and initialize a byte[] in QIE?
javascript
java
Please
log in
or
register
to add a comment.
Please
log in
or
register
to answer this question.
1
Answer
+1
vote
Best answer
var initialSize = 1024;
var some_byte_array = new Packages.java.lang.reflect.Array.newInstance(java.lang.Byte.TYPE, initialSize);
answered
Oct 10, 2013
by
rich-c-2789
(
17.6k
points)
selected
Dec 17, 2013
by
ron-s-6919
Please
log in
or
register
to add a comment.
...