Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Error 1330 (Invalid digital signature in data1.cab) installing 1.6.0_15

843798Aug 20 2009 — edited Nov 3 2009
This is similar to a previous thread about this issue with update 11 - however the solutions provided for update 11 don't appear to help. I had posted in that thread as well but then noticed it was 4 months old, so figured a new line of communication might be useful.

This only occurs on Vista; the XP systems in our environment have no problem installing it.

Comments

JosAH
In my C program I have one void pointer. I want to send this void pointer to my
Java program as InputStream. Is it possible?
Sure it is. You need a bit of JNI stuff to pass that void* back to Java as a byte[];
given that array just use a ByteArrayInputStream.

kind regards,

Jos
843829
Do you have any C++ source code as example?

Edited by: efebo on Sep 9, 2010 5:47 PM

Edited by: efebo on Sep 9, 2010 5:54 PM
EJP
void *pointer = ...;
return (jbyte*)pointer;
efebo wrote:
Do you have any C++ source code as example?
Original (old) question makes no sense.

It is pointless to put a generic void pointer onto a stream.
If one ones to put the data that it point to on a stream then one would need to write code to do that.
1 - 4
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Dec 1 2009
Added on Aug 20 2009
11 comments
7,570 views