Re: Delete all class files

1998-09-15 Thread Armen Yampolsky
Keith T. Garner wrote: > > > > On Mon, Sep 14, 1998 at 07:17:17, David Warnock said: > > > I thought I should be able to connect "find . -name *.class" to > "rm" > > > somehow using redirection or pipes but cannot get it to work. > > > > You were very close to one possible solution :) > > > > find

Re: java-linux, reliabilety

1998-09-15 Thread Michael Sinz
On Wed, 16 Sep 1998 13:57:27 -0700, Lukas Hazlehurst wrote: > >>> Is java on linux reliable enough to run on a box by itself for a >>> considerable period of time, or would C be more appropriate ? >> >>I have had NO PROBLEMS with Linux Java for server software. I've had >>some problems with AWT-

Re: java-linux, reliabilety

1998-09-15 Thread Lukas Hazlehurst
>> Is java on linux reliable enough to run on a box by itself for a >> considerable period of time, or would C be more appropriate ? > >I have had NO PROBLEMS with Linux Java for server software. I've had >some problems with AWT-related stuff, but that's... well, the Java >burden at this point i

[ANN] JConfig 1.2: Linux, Unix, WinNT versions available

1998-09-15 Thread Chris Kelly
Samizdat Productions Releases JConfig 1.2 JConfig is a class library which supplements the core Java API. It lets you work with files, web browsers, processes, file types, and other system-level items in a much more advanced manner than that provided by the standard Java class libraries. A list o

Re: Delete all class files

1998-09-15 Thread Paul Reavis
David Warnock wrote: > > Paul Reavis wrote: > > > All of which is more complicated than my favorite method, which is to > > specify a separate .class file directory with the "-d" option (javac or > > jikes); then it's just > > > > rm -r classes\* > > Ok, this is neat. Do I get a complete duplic

Re: Delete all class files

1998-09-15 Thread Michael D. James
You didn't specify whether you wanted an easy way or a hard way. If you want a hard way, hack the following recursive perl script to only remove *.class. #!/usr/local/bin/perl use English; sub delete_directory_tree { my($dir) = shift; my($path); unless (opendir(DIR, $dir)) {

Re: Printing of Graphic

1998-09-15 Thread Zhichao Hong
Yes, it is very stable. I test the JTable with jdk1.1.6v4 yesterday with Postgresql-jdbc. They did much better than MS SQLserver with Windows NT.

Re: Delete all class files

1998-09-15 Thread Robert Dietrick
You can use xargs to construct a list of files for rm to delete. This should work: find ./ -name '*.class' -print | xargs rm On Mon, 14 Sep 1998, David Warnock wrote: > Hi, > > I am using Jikes 0.37 and whilst I trust it's -depends option I like to > delete all class files prior to building

Re: Delete all class files

1998-09-15 Thread David Warnock
Paul Reavis wrote: > All of which is more complicated than my favorite method, which is to > specify a separate .class file directory with the "-d" option (javac or > jikes); then it's just > > rm -r classes\* Ok, this is neat. Do I get a complete duplicate of my source directories for the clas

Re: Delete all class files

1998-09-15 Thread Paul Reavis
Keith T. Garner wrote: > > On Mon, Sep 14, 1998 at 07:17:17, David Warnock said: > > I thought I should be able to connect "find . -name *.class" to "rm" > > somehow using redirection or pipes but cannot get it to work. > > You were very close to one possible solution :) > > find . -name *.clas

Re: Delete all class files

1998-09-15 Thread Justin Lee
Keith T. Garner wrote: On Mon, Sep 14, 1998 at 07:17:17, David Warnock said: > I thought I should be able to connect "find . -name *.class" to "rm" > somehow using redirection or pipes but cannot get it to work. You were very close to one possible solution :) find . -name *.class | xargs rm xargs

Re: Delete all class files

1998-09-15 Thread Michael D. James
You almost have it. Using find, it's something like find . -name *.class -exec rm {} ; find substitutes {} with the filename. Directory trees worked much better under VAX/VMS. > X-POP3-Rcpt: james@fattire > Sender: [EMAIL PROTECTED] > Date: Mon, 14 Sep 1998 19:17:17 + > From: Da

Re: Delete all class files

1998-09-15 Thread Keith T. Garner
On Mon, Sep 14, 1998 at 07:17:17, David Warnock said: > I thought I should be able to connect "find . -name *.class" to "rm" > somehow using redirection or pipes but cannot get it to work. You were very close to one possible solution :) find . -name *.class | xargs rm xargs is a wonderful progr

RE: Delete all class files

1998-09-15 Thread Kapoor, Nishikant X
You can do something like this: find . -name "*.class" -exec rm {} \; This will find all the class files (including the sub-directories) and remove them. Nishi --People who live in windowed environments shouldn't cast pointers-- mailto:[EMAIL PROTECTED] http://www.c3ipros.com/nkapoor ---

Delete all class files

1998-09-15 Thread David Warnock
Hi, I am using Jikes 0.37 and whilst I trust it's -depends option I like to delete all class files prior to building a release. I am also very new to Linux and cannot see how to delete *.class files from a directory tree. Under windows NT I could use "del *.class /s" but "rm -r *.class" does not

Re: Printing of Graphics

1998-09-15 Thread David Warnock
Chris Sommers wrote: > > Maarten, > Try using the swing graphics library. It has a componenet > called JTable which is suitable. I've been using Swing under > a different "popular" OS lately (guilt...), I like it. > > This begs the question - > > Open question to the Community: is Swing availa

Re: Swing & Navigator

1998-09-15 Thread Ståle Kirkevaag
remove me from this mailing list ASAP -Original Message-From: Dimitris Vyzovitis <[EMAIL PROTECTED]>To: Domingo Pinya <[EMAIL PROTECTED]>Cc: [EMAIL PROTECTED] <[EMAIL PROTECTED]>Date: 15. september 1998 18:52Subject: Re: Swing & NavigatorHi, I had a simila

Re: Swing & Navigator

1998-09-15 Thread Dimitris Vyzovitis
Hi, I had a similar rpoblem with 4.05. I think that you should have to complete path to the jars in the classpath (only for netscape!!!), that is try creating a script like the follwoing (this is the script I use to invoke netscape): #!/bin/sh export MOZZILA_HOME=/opt/netscape CBASE=/opt/netscape

Swing & Navigator

1998-09-15 Thread Domingo Pinya
Hi, I'm usign Swing 1.0.2 and Communicator 4.05, and when I load any applet that uses some Swing class, I have the next message: java.lang.NoSuchMethodError: java.awt.Component: method enableEvent(J)V not found at com.sun.java.swing.JComponent(JComponent.java:130) at com.sun.java.swing.JR

Re: Printing of Graphics

1998-09-15 Thread Keith T. Garner
On Tue, Sep 15, 1998 at 11:37:28, Pete Hardie said: > Chris Sommers wrote: > > This begs the question - > > > > Open question to the Community: is Swing available for > > Linux? Is it stable enough? > > It is available. I downloaded it Sunday, and have run some of > the demos. > > Stability?

Re: Printing of Graphics

1998-09-15 Thread Pete Hardie
Chris Sommers wrote: > This begs the question - > > Open question to the Community: is Swing available for > Linux? Is it stable enough? It is available. I downloaded it Sunday, and have run some of the demos. Stability? Dunno yet. SOme of the demos seemed flaky, but I don't know if it was

Re: Printing of Graphics

1998-09-15 Thread Chris Sommers
Maarten, Try using the swing graphics library. It has a componenet called JTable which is suitable. I've been using Swing under a different "popular" OS lately (guilt...), I like it. This begs the question - Open question to the Community: is Swing available for Linux? Is it stable enough? - c

Java on Linux and gtk

1998-09-15 Thread Jason Pfeil
To Whom It May Concern: Is there any thought to porting the Java GUI parts to gtk instead of using Motif? If not, I may be interested in starting that project but I will need to look at the Sun source code first. Thanks. --Jason Pfeil

Re: Java missing library

1998-09-15 Thread Wim Ceulemans
-> >I am trying to install the v1.1.5 or 6 on my machine and I believe that I >should be installing the libc5 version of the java package. It is still >asking for the libX11.so.6. I am getting the package from ce.usu.edu. >. >../bin/i686/green_threads/java: can't load library 'libX11.so.6' >. >I

Re: Printing of Graphics

1998-09-15 Thread Wim Ceulemans
>Howdie > >Anybody know any good way of using Toolkit and Graphics in order to >print Spreadsheet-kinda output? In a slightly easier way then to draw >rectangles all over the paper and draw text inside them, I hope? > Maybe you can output your data in HTML table format and then print that HTML

Java missing library

1998-09-15 Thread David_D_Winfield
Hello, I am trying to install the v1.1.5 or 6 on my machine and I believe that I should be installing the libc5 version of the java package. It is still asking for the libX11.so.6. I am getting the package from ce.usu.edu. . . . ../bin/i686/green_threads/java: can't load library 'libX11.so.6'

Re: ANNOUNCE: JAVA jdk116 for ALPHA

1998-09-15 Thread Christoph Nadig
> from my web site at http://www.voicenet.com/~gatgul/JDK > > It was built on a LX164 with the redhat 5.0 distribution. I used egcs > 1.1a, and used the -mcpu=21164a option -> so i suspect that folks with > 21064 ( ie previous generation ) processors will have problems with > execution. the 21

NetBeans Releases Last Beta Version of Java IDE, Free Download Continues

1998-09-15 Thread Helena Stolka
Press Release: Technology Writers & Business Editors Prague, Czech Republic, September 14, 1998 - NetBeans, Inc. today announced the release of the Beta 3 version of NetBeans Developer 2.0. It is the last beta prior to the full release, which is due near the beginning of Q4. Beta 3 is availabl

Printing of Graphics

1998-09-15 Thread Maarten van Leunen
Howdie Anybody know any good way of using Toolkit and Graphics in order to print Spreadsheet-kinda output? In a slightly easier way then to draw rectangles all over the paper and draw text inside them, I hope? And how can I put scaling into effect? Drawing stuff despite changes sizes? -- Maart

RE: SEGV from iostream in native method on Linux, FreeBSD, not Windoze

1998-09-15 Thread A . KLOS
To add another comment... be sure you have a version > JDK1.1.3, because until 1.1.3 JNI didn't work for me on Linux. JDK1.1.5 did work however! Cheers, Addy. -- | From: rmlynch / mime, , , [EMAIL PROTECTED] | To: java-linux / mime, , , [EMAIL PROTECTED] | Subject: SEGV from iostrea