Tim Walsh <[EMAIL PROTECTED]> wrote:
> Can anyone give me some detailed structure details of the
> Link Vector which is passed to a JIT using the java_lang_Compiler_start
> function.
> Frank Yellin's JIT Compiler API just mentions the types of addresses
> contained wi
Can anyone give me some detailed structure details of the
Link Vector which is passed to a JIT using the java_lang_Compiler_start
function.
Frank Yellin's JIT Compiler API just mentions the types of addresses
contained with in it.
Any links, info or further details are appreciated.
thanks
char ch = (char)in.read();
char vectCh1[] = new char[10];
int chRead_a = in.read(vectCh1, 1, 6);
pw.println("First vector " + ch + vectCh1);
if i read a string like < I read this ... >
vectCh1 store " read" first character not appear "I"
but it's store
Oops. The problem was that I forgot to import java.util.Vector
in the little class I tested. I feel really stupid, now.
Russ
[EMAIL PROTECTED] on 03/11/99 01:35:23 PM
To: Russell Pridemore@LEXMARK
cc:
Subject: Re: Vector?
Russ,
I do believe that the problem is the
java that comes
:34 AM
To: [EMAIL PROTECTED]
cc: [EMAIL PROTECTED] (bcc: Russell Pridemore/Lex/Lexmark)
Subject: Vector?
Colleagues,
Have the collection classes for java been completed
to fit the API? I have installed jdk1.2 on my RH5.2
system, and compiled some simple programs to see
that it works.
Thank you for the comments James.
Yes, This is a good thing to be careful of.
I have a fresh installation of RH5.2. It may
be that a previous version of java came with
the operating system. However, I have set my
PATH to include jdk1.2/bin. I will check this
point more closely. It had not occure
Have you made sure your classpath and all that stuff left over from your
previous adventures in java have been cleaned up?
LD_LIBRARY_PATH
CLASSPATH
JAVA_HOME
Just making sure. cause you maybe referencing the wrong set of classes by
accident.
Cheers
James.
Pooh Bear -- "I am just a bear of li
Colleagues,
Have the collection classes for java been completed
to fit the API? I have installed jdk1.2 on my RH5.2
system, and compiled some simple programs to see
that it works. Then I attempted to compile some
of my work that made heavy use of java.util.Vector
and the compiler complained th