Getting off the list [was Re: How to invoke ?]

1998-12-19 Thread Mark Hofmann
[EMAIL PROTECTED] wrote: > How do i get off this list? The place where I heard about this list is http://www.blackdown.org/java-linux.html And that's where they also tell you how to get off the list ... By the way, by entering the keywords +"java-linux" +mailinglist +unsubscribe in www.y

Hitting walls with JDK1.1.7v1a native threads

1998-12-19 Thread Nathan Meyers
The Java app I'm developing on Linux is failing when I try to run with native threads. Before I spend a lot of time scratching my head over my own code, I need to ask: The failure is a SIGSEGV (segmentation fault). Should this ever happen as a result of my app's behavior? My inclination is to sus

Re: How to invoke ?

1998-12-19 Thread pdagg
How do i get off this list? At 01:44 PM 12/19/98 -0500, Christopher Hinds wrote: >Use java.lang.Runtime.exec() . The method comes in three flavors > >1.) public Process exec(String command) throws IOException. >2.) public Process exec(String command, String[] envp) throws >IOException.

Re: How to invoke ?

1998-12-19 Thread Christopher Hinds
Use java.lang.Runtime.exec() . The method comes in three flavors 1.) public Process exec(String command) throws IOException. 2.) public Process exec(String command, String[] envp) throws IOException. 3.) public Process exec(String[] cmdarray) throws IOException. Check the javadocs for the com

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

1998-12-19 Thread Shane Blaser
I am using 1.1.7 native threads on with smp(2) and it is kicks butt ! Although it was not stable until I went to version 2.1.131 of the kernel !!! Shane Moses DeJong wrote: > On Wed, 16 Dec 1998, Java News Collector wrote: > > > At 05:00 PM 12/16/98 -0600, Moses DeJong wrote: > > >I have

Re: Read Huge File using Java - thanks

1998-12-19 Thread Christopher Hinds
The finalize() method of any object is called by the JVM during a GC cycle. This gives the developer the chance to do any clean up before the object is removed from object heap. A good example of cleanup might be closing JDBC connection to a database or cleanly closing socket connection, Cheers C

How to invoke ?

1998-12-19 Thread Ramesh Babu A.
Hi, How to invoke java enabled browser from my java application ? If anybody knows pls mail it to me. Thanks in advance.