You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromjniusimportautoclassArrayList=autoclass("java.util.ArrayList")
md=ArrayList()
md.add(b'hello')
md.add(b'world')
print(type(md.get(0))) # should be bytes, but is strprint(md.get(0)) # should be b'hello', but is 'hello'
Added bytes to ArrayList, but got str back.
Is it possible to get it fixed?
The text was updated successfully, but these errors were encountered:
Sadly none of the maintainers, have much time for the project currently, so i wouldn't expect it to be solved on its own. If you want to investigate and propose a fix, we'll do our best to review it timely.
Added bytes to ArrayList, but got str back.
Is it possible to get it fixed?
The text was updated successfully, but these errors were encountered: