Re: Display image

1999-06-19 Thread Anonymous
> Is it possible that Java display an pgm/raw formatted > image? JAI will support PGM raw. For more information about JAI see http://java.sun.com/products/java-media/jai/index.html. A pure-Java implementation is available from that site. A native code enhanced version will be ported to Linux, fo

Re: Need help in Compiling with JDK 1.2

1999-06-19 Thread Anonymous
Tony T wrote: > > Hi,I downloaded JDK 1.2 (jdk1_2pre-v2) for Linux from www.blackdown.org. > After installed it on Redhat 5.2 in /usr/local > directory, when I tried to test compiling it: > javac hello.java > > I got the following errors: > /usr/local/jdk1.2/bin/i386/native_threads/javac: error

Re: Need help in Compiling with JDK 1.2

1999-06-19 Thread Anonymous
> Hi,I downloaded JDK 1.2 (jdk1_2pre-v2) for Linux from www.blackdown.org. > After installed it on Redhat 5.2 in /usr/local > directory, when I tried to test compiling it: > javac hello.java > > I got the following errors: > /usr/local/jdk1.2/bin/i386/native_threads/javac: error in loading > sh

Display image

1999-06-19 Thread Anonymous
Is it possible that Java display an pgm/raw formatted image? --Simmy -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

announce: TYA 1.4 new release

1999-06-19 Thread Anonymous
Hi, the new TYA JIT release 1.4 is out there!! I've just uploaded 135200 bytes to ftp://gonzalez.cyberus.ca/pub/Linux/java/tya14.tgz What's new? This is pasted from README: --quote-- .. 3. SOME RELEASE NOTES = This release should show some general good speedup (5..20

Re: Display an image

1999-06-19 Thread Anonymous
Yuet Sim Lee wrote: > Hi, > > I knew that getImage() could > load an image file from the > network and paint() could > display it. > > However, I don't know how can I > get an image which is a local > file. I tried > > Image i = getImage( String filename ) > > It can not be compiled and the > co

Re: Compile OK but not Run

1999-06-19 Thread Anonymous
tinland wrote: > After an installation de jdk1.2 on Linux RedHat 6 > > I can Compile with javac in Xterm windows and i get one file.class > > When i would run this file.class i use "java file.class" and it return this error : > at java.lang.NoClassDefFoundError. > No, no , no. you must call java

RE: Calling Java objects from C++

1999-06-19 Thread Anonymous
>> >> Hi, >> >> I'm looking for a way to call Java objects from C++. >> Is this possible using JNI? > >Yes, it is possible. There are two scenarios: >1. you want to call methods of Java objects while you are in C++ code >that is the native implementation of a method of another Java object. In >t

Re: Display an image

1999-06-19 Thread Anonymous
Make sure you are using the getImage() from the Toolkit class and not the Applet class. The Applet class only supports getImage() for a URL. I couple things to try: i = getToolkit().getImage( "houses.gif" ); -- or -- i = getImage( new URL( "file:////houses.gif" )); Andy Yuet Sim Lee wrot

Java for Linux performance

1999-06-19 Thread Anonymous
Is OpenSpot available for Linux? I have a server-side Java app that needs to perform well and I would like to run it on Linux. It is a console app with no graphics. Any suggestions would be greatly appreciated ... Andy --

Re: Display an image

1999-06-19 Thread Anonymous
--- Yuet Sim Lee <[EMAIL PROTECTED]> wrote: > Hi, > > I knew that getImage() could > load an image file from the > network and paint() could > display it. > > However, I don't know how can I > get an image which is a local > file. I tried > > Image i = getImage( String filename ) > > It can n

Re: VisualAge for Java for Linux

1999-06-19 Thread Anonymous
On Thu, 17 Jun 1999 09:57:39 -0400, "Jauvane Cavalcante de Oliveira" <[EMAIL PROTECTED]> said: Jauvane> http://www7.software.ibm.com/vadreg.nsf/GARegistration?OpenForm Jauvane> free of charge. The download page is Jauvane> http://www.software.ibm.com/ad/vadd Jauvane> Let us let them know how bi

Re: VisualAge for Java for Linux

1999-06-19 Thread Anonymous
It is Pure java, which will run anywhere ? Or is it just for linux/intel :-/ gat Alex Rice wrote: > On Thu, 17 Jun 1999 09:57:39 -0400, > "Jauvane Cavalcante de Oliveira" <[EMAIL PROTECTED]> said: > > Jauvane> http://www7.software.ibm.com/vadreg.nsf/GARegistration?OpenForm > Jauvane> free of ch

Re: VisualAge for Java for Linux

1999-06-19 Thread Anonymous
Alex Rice wrote: > > Yes, everyone, check it out. Visual Age for Java is a great > development environment. > > Alex Rice|[EMAIL PROTECTED]|http://www.swcp.com/~alrice > Current Location: N. Rio Grande Bioregion, Southwestern USA > > ---

Re: Compile OK but not Run

1999-06-19 Thread Anonymous
> After an installation de jdk1.2 on Linux RedHat 6 > > I can Compile with javac in Xterm windows and i get one file.class > > When i would run this file.class i use "java file.class" and it return this error : > at java.lang.NoClassDefFoundError. you have to give like "java file" not "java file

Problem aobut running javac & appletviewer...

1999-06-19 Thread Anonymous
Hi, When I run javac & appletviewer, I got the following message: /usr/local/jdk117_v1a/bin/checkVersions: /tmp/ldd.out.10047:Permission denied. /usr/local/jdk117_v1a/bin/i586/green_threads/appletviewer: /usr/bin/mkdir: No such file or directory SIGSEGV 11* segmentation violation stackba

Re: Calling Java objects from C++

1999-06-19 Thread Anonymous
Naoki Shibuya wrote: > > Hi, > > I'm looking for a way to call Java objects from C++. > Is this possible using JNI? Yes, it is possible. There are two scenarios: 1. you want to call methods of Java objects while you are in C++ code that is the native implementation of a method of another Java o