Re: has anyone got the native threads jdk1.1.7a1 running?

1998-12-18 Thread Juergen Kreileder
> Moses DeJong writes: Moses> The CLASSPATH and LD_LIBRARY_PATH are set so that the Moses> classes.zip file and the native libs are visible to the Moses> JVM. Invocation doesn't use the CLASSPATH variable in 1.1. You should set the classpath from within you C program: JavaVM* vm

Re: has anyone got the native threads jdk1.1.7a1 running?

1998-12-18 Thread Moses DeJong
On Wed, 16 Dec 1998, Java News Collector wrote: > At 05:00 PM 12/16/98 -0600, Moses DeJong wrote: > >I have not seen much about the native threads port for 1.1.7 in the > >mailing list archives. Is there anyone out there that has gotten the > >native threads version of 1.1.7a1 to work with JNI? I

Re: Copy File in Java

1998-12-18 Thread Moses DeJong
There is no copy file operation in the JDK API. You will have to open the file and write a read-write loop for the data. Mo DeJong [EMAIL PROTECTED] gimme multimedia group On Thu, 17 Dec 1998, Sze Yuen Wong wrote: > Hi, > > Anybody know how to copy a file in Java? > > Thanks. > > Sze Yuen >

Read Huge File using Java - thanks

1998-12-18 Thread Quanyu Zhu
Hi,there: Thanks for the comments on reading huge file using java . Following some of your comments, right now I got a solution, which tested for one 150M file just using 1 minutes and then draw the image. That sounds a good result I can get. Actually, I just used the bufferIO, and

Linux timer granularity and java

1998-12-18 Thread Isfahan Deendar
Is anybody aware of how to make java's System.CurrentTimeMillis return with a resolution/accuracy of 1ms or lower on Linux (since linux's timer granularity is 10ms). -Isfi

Java Plug-in 1.1 troubles...

1998-12-18 Thread TJ Saunders
Hello, all. I have just upgraded the Netscape, JDK, and Swing versions on my Slackware (Linux 2.0.33) box so that I could develop some applets utilizing Swing for a WWW front end for our Informix database, using JDBC. However, in the midst of all that, I ran across one small annoying problem. I

JNI problem on 1.1.7_v1a Linux

1998-12-18 Thread Udo K. Schuermann
The error you were getting is solved by giving the linker (ld) the location of the library that defines the symbol that the loader is looking for. This is accomplished with the '-f name' option, similar to the following: ld -G -f /usr/lib/libuuid.so UUID.o -o libjava-rlt-uuid.so

Re: Java threading

1998-12-18 Thread Anonymous
> Michael Thome writes: Michael> Obligatory Java-Linux subject: What I'd *really* like Michael> (for my own application) is for VMs to support a hybrid Michael> of green and native threads - e.g. a limited pool of Michael> natives running a larger set of greens. Native threads

Unidentified subject!

1998-12-18 Thread KARLSON STEFAN
 

Re: Java threading

1998-12-18 Thread Michael Thome
> "Nelson" == Nelson Minar <[EMAIL PROTECTED]> writes: >> (b) kernel thread semantics are different from user thread semantics, > In practice, Java threads are woefully underspecified, and so it's > nearly impossible to write correct multithreaded Java. I'd say it is "difficult to write cor

Re: thanks

1998-12-18 Thread Rachel Greenham
On Fri, 18 Dec 1998, August West wrote: >> >I work for a startup software company that is building a 100% Java web-based >training package. We're using the JRun webserver for servlets, and it's >all-in-all a pretty cool package. I've got the installers just about built >for Win32, and it looks lik