You don't need classes.zip or rt.jar in your classpath, but you do need
the directory containing your HelloWorldApp program in
your classpath.
Hope this helps.
jason
clyde jones wrote:
> Nope this didn't work - I still get the same error.
>
> $ java HelloWorldApp
> Exception in thread "main"
Hi Raj.
I'm guessing that you have glibc-2.1.1 on your box, which is the
version that is shipped with RedHat 6.0, and jdk1.2.2 RC3
needs glibc-2.1.2. JDK1.2pre-v2 needs glibc-2.1.1, which is
why you didn't have any trouble with that.
Hope this helps.
jason
Raj Patel wrote:
> Hi everybody,
>
Pedro Guimaraes wrote:
> The glibc2-HOWTO explains how you can have libc5 and glibc2 installed and
> both working. Read it *carefully* and everything should work if you follow
> the instructions!
>
> -Pedro
I did read the HOWTO before I wrote to the newsgroup. I didn't find what
I needed in it,
Pedro Guimaraes wrote:
>
> Ok... I found out from this list that jdk1.2.2 needs glibc-2.1.*
>
I also did a build (glibc-2.1.2) but I can't change the
/lib/ld-linux.so.2 link because of others using it. Anyone
know how to get java to use the new library without
changing that link?
Thanks.
jason
Hi...
I've implemented a 'magnifying glass' on a BufferedImage object by using
the
getSubimage call to get the image segment, and enlarging it and drawing
it
directly on top of the original segment using Graphics' drawImage
method.
The magnifying glass is tied to the movement of the mouse. Makin