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
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-
>> 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
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
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
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)) {
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.
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
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
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
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
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
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
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
---
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
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
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
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
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
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?
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
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
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
->
>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
>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
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'
> 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
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
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
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
30 matches
Mail list logo