Is it possible to obtain the compilable source.

1999-01-08 Thread Jason Silverglate
I am looking to obtain the compilable source code for java-linux as i am trying to compile it for a redhat 5.1 on in intel strongarm processor not i386 and standard ports wont' work on it. Can you help please? it is extremely important and of some urgency that I aquire this. Jason Silverglate

Re: jdk1.2 testing

1999-01-08 Thread Trevor Harmon
Gabe Hamilton wrote: > If you need people to test jdk 1.2, I would be happy to help out. Me too... It would be great if the Blackdown team could put out a pre-release of 1.2, since their web page claims that the port is at least "running". Anyone know if this is a possibility? The page also say

jdk1.2 testing

1999-01-08 Thread Gabe Hamilton
If you need people to test jdk 1.2, I would be happy to help out. Gabe -- Gabe Hamilton UCAR- University Corporation for Atmospheric Research Research Applications Program [EMAIL PROTECTED]

RE: jdk 1.2 was released too early

1999-01-08 Thread Jason Dillon
> JNI - still sucks - especially on Solaris What sucks about it? Just wondering. --jason

jdk 1.2 was released too early

1999-01-08 Thread Kirk Hutchinson
For those of you who are not programming on multiple platforms and have not begun using the much-balleyhooed Java 2, let me clue you in on a few things. Java 2 was released WAY too early, and consequently suffers from many bugs and problems. The following parts are things my team has encountered

Re: Building a tree (data structure) with Java.

1999-01-08 Thread mlorton
> How about using JTree? That's what we use to store our trees, though > I'm not certain how suitable they are to standard graph-theoretic > algorithms. JTree is a UI element. You could use DefaultTreeNode, I suppose. > On Fri, 8 Jan 1999, dog wrote: > > thomas down wrt: > > > I

Re: JDBC/servlet problem

1999-01-08 Thread Peter T Mount
On Thu, 7 Jan 1999, Ben Newman wrote: > Thanks, tried it but it didn't work. Any other ideas? Have you tried registering the jdbc driver yourself, rather than relying on the driver doing it itself? In the early days of the PostgreSQL driver, we had a similar problem. When we found that registe

Re: JDBC:RMI --> JDBC --> PostgreSQL

1999-01-08 Thread Peter T Mount
On Thu, 7 Jan 1999, Thomas Bocek wrote: > An other solution: > > unpack the jdbc driver with jar xvf postres.jar and copy it into your > project directory. -> No additional entry into your classpath is > necessary. This trick is usually best with applets, but works well as a last resort while t

Re: JDBC:RMI --> JDBC --> PostgreSQL

1999-01-08 Thread Peter T Mount
On Wed, 6 Jan 1999, Ing. Conrado Miguel Rodr?guez Fern?ndez wrote: > I'm trying to distribute my PostgreSQL tables through JDBC:RMI. I have been using > the PostgreSQL JDBC driver from contrib.redhat. and it do it's job Ok. What version of the driver are you using? Last week, I posted an update

Unidentified subject!

1999-01-08 Thread Krudthuset
hey  PLEASE WRITE me   how i downloade Netbus 1,6     i will be wery happy if your will write me on my Hotmail     [EMAIL PROTECTED]     and write _how its works!!    and i will be wery happy!!    BYE mick herzog  From denmark

Re: Building a tree (data structure) with Java

1999-01-08 Thread Martin FUZZEY
What about javax.swing.DefaultMutableTreeNode This is a purely data model class - ie it is not restricted nor linked to visual trees On Fri, Jan 08, 1999 at 05:07:08PM +0530, Karthik Vishwanath wrote: > HI all, > I need to generate a tree structure in my Java app. The size of > the tree ca

1.2 JIT or Hotspot?

1999-01-08 Thread Alex Rice
Any word on whether Java 2 for Linux will have the JIT run-time? (Seems unlikely that Symantec would port it). What about the mythical HotSpot from Sun? Alex Rice

jdk 1.2

1999-01-08 Thread hayward
Hello, Is it possible to download a beta version of JDK 1.2 for Linux/x86? I am interested in working with java, but I want to use the latest version. Any estimate on when it will be released? Thanks, --- Brian Hayward [EMAIL PROTECTED] http://www.slothmud.org/~hayward/mic_humor.html :Microso

JDK 1.2??

1999-01-08 Thread Robert Kosara
Hi, I just wanted to ask if you already know when the Linux/Intel port of JDK1.2 will be available. I would prefer to continue working under Linux than get all the tools I need for NT ... Regards, Robert *** What this c

Re: jdk 1.2

1999-01-08 Thread Brian Jones
Mehrdad Jahansoozi <[EMAIL PROTECTED]> writes: > This is a multi-part message in MIME format. > --699DB07968A3FE254B61003D > Content-Type: text/plain; charset=us-ascii > Content-Transfer-Encoding: 7bit > > I have used the JDK 1.2 . > There two question I have on porting it to Linux

Re: jdk 1.2

1999-01-08 Thread Mehrdad Jahansoozi
I have used the JDK 1.2 . There two question I have on porting it to Linux 1) Are we going to see the same memory management improvement ( All previous versions of JDK had memory leak, JDK 1.2 is a great improvement. There are still some minor memory leak in JDK 1.2 which does kill server appli

Re: Building a tree (data structure) with Java.

1999-01-08 Thread Dimitris Vyzovitis
> That solution would work fine, of course. The alternative is a > `linked tree' structure. Binary trees are easy (just store each > node's left and right children, and probably the parent). Trees > with arbitrary numbers of branches are a little more complex. My > preferred solution is for ea

Re: jdk 1.2

1999-01-08 Thread Nathan Meyers
Dirk Vanhalle wrote: > > Hi. > > Just stay tuned to this list. We're all waiting quite anxiously. I'm > confident that you will receive plenty of messages as soon as the new JDK > is available for download. > Let's give those porters a chance to complete their work and release a > stable produ

Re: Sorry: Ignore that last post (Is this a JVM bug? Why is my localvariable not initialized?)

1999-01-08 Thread Michael Thome
> "Richard" == Richard Jones <[EMAIL PROTECTED]> writes: > Java News-collector wrote: >> >> Obviously you have limited knowledge/experience with the internals of >> object-oriented environments. I wouldn't be too quick to call the object >> construction/initialization sequence "dumb" withou

Re: a better jni tutorial

1999-01-08 Thread Gregg G. Wonderly
>Do any of you know of a better jni tutorial other than the few pages that are >avaible from javasoft? Or perhaps does anyone know of any jni toolkits to hel p >those writing native methods? The book, Essential JNI, is full of good examples and code is available from the web site at prentice

help can't find HelloWorld class message

1999-01-08 Thread Hoang C. Truong
Hello, When I compile my java source using this command: javac HelloWorld.java It produced HelloWorld.class. When I try to run it, it gave me error message like this: java HelloWorld can't find HelloWorld class Does anyone know what is going on?  Thanks  

Re: Building a tree (data structure) with Java.

1999-01-08 Thread dog
thomas down wrt: > > I need to generate a tree structure in my Java app. The size of > > the tree cannot determined until runtime. THe idea i have is to store the > > tree as an array using the Vector class. Before i start implementation, i > > want to ask if there is an alternative approach t

RE: jdk 1.2

1999-01-08 Thread DANIEL RINCON PRADA
UNSUSCRIBE ME -Mensaje original- De: Dirk Vanhalle <[EMAIL PROTECTED]> Para: [EMAIL PROTECTED] <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Fecha: viernes 8 de enero de 1999 6:39 Asunto: Re: jdk 1.2 >Hi. > >Just stay tuned to this list. We're all waiting quite anxiously

RE: jdk 1.2

1999-01-08 Thread DANIEL RINCON PRADA
UNSUSCRIBE ME -Mensaje original- De: Dirk Vanhalle <[EMAIL PROTECTED]> Para: [EMAIL PROTECTED] <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Fecha: viernes 8 de enero de 1999 6:39 Asunto: Re: jdk 1.2 >Hi. > >Just stay tuned to this list. We're all waiting quite anxiously

RE: jdk 1.2

1999-01-08 Thread DANIEL RINCON PRADA
UNSUSCRIBE ME -Mensaje original- De: Dirk Vanhalle <[EMAIL PROTECTED]> Para: [EMAIL PROTECTED] <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Fecha: viernes 8 de enero de 1999 6:39 Asunto: Re: jdk 1.2 >Hi. > >Just stay tuned to this list. We're all waiting quite anxiously

RE: jdk 1.2

1999-01-08 Thread DANIEL RINCON PRADA
UNSUSCRIBE ME -Mensaje original- De: Dirk Vanhalle <[EMAIL PROTECTED]> Para: [EMAIL PROTECTED] <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Fecha: viernes 8 de enero de 1999 6:39 Asunto: Re: jdk 1.2 >Hi. > >Just stay tuned to this list. We're all waiting quite anxiously

RE: jdk 1.2

1999-01-08 Thread DANIEL RINCON PRADA
UNSUSCRIBE ME -Mensaje original- De: Dirk Vanhalle <[EMAIL PROTECTED]> Para: [EMAIL PROTECTED] <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Fecha: viernes 8 de enero de 1999 6:39 Asunto: Re: jdk 1.2 >Hi. > >Just stay tuned to this list. We're all waiting quite anxiously

Re: jdk 1.2

1999-01-08 Thread Dirk Vanhalle
Hi. Just stay tuned to this list. We're all waiting quite anxiously. I'm confident that you will receive plenty of messages as soon as the new JDK is available for download. Let's give those porters a chance to complete their work and release a stable product ! Be patient. Dirk.

Re: Building a tree (data structure) with Java.

1999-01-08 Thread Thomas Down
On Fri, Jan 08, 1999 at 05:07:08PM +0530, Karthik Vishwanath wrote: > HI all, > I need to generate a tree structure in my Java app. The size of > the tree cannot determined until runtime. THe idea i have is to store the > tree as an array using the Vector class. Before i start implementation

jdk 1.2

1999-01-08 Thread Yaron Gvili
Hi. I'd like to know how can I be notified when jdk 1.2 port for linux is released. Can I subscribe to some automatic mailer, so I'll get notified on new linux ports for java ? Thanks, Yaron Gvili.

Building a tree (data structure) with Java.

1999-01-08 Thread Karthik Vishwanath
HI all, I need to generate a tree structure in my Java app. The size of the tree cannot determined until runtime. THe idea i have is to store the tree as an array using the Vector class. Before i start implementation, i want to ask if there is an alternative approach to this? Thanks, Kart

Re: Sorry: Ignore that last post (Is this a JVM bug? Why is my localvariable not initialized?)

1999-01-08 Thread Richard Jones
Java News-collector wrote: > > Obviously you have limited knowledge/experience with the internals of > object-oriented environments. I wouldn't be too quick to call the object > construction/initialization sequence "dumb" without a detailed analysis. > > I would be inclined to say that calling

Re: Is this a JVM bug? Why is my local variable not initialized?

1999-01-08 Thread Richard Jones
Christopher Hinds wrote: > > This may sound like a stupid question but aside from the obvoius technical > > reason(s), can someone please give a real-world example where this could > be used ( ie.. calling a instanance method(s) in the constructor of the > superclass before > the superclass has

ANNOUNCE: network file synchronization utility v1.1

1999-01-08 Thread J.P.Lewis
(swing+rmi; developed with Blackdown jdk1.1.7a) Version 1.1 is rewritten to no longer require native (non-java) link detection; installation is simplified; other improvements. - Xfiles is a X/JFC utility that interactively cross-validates one disk against another over a network. It's usef

Links/Aliases/Shortcuts in Java (how-to doc)

1999-01-08 Thread J.P.Lewis
A description of this issue + a pure java routine that seems to work correctly under linux: http://www.idiom.com/~zilla/Xfiles/javasymlinks.html

RE: Jdk1.2 status ???

1999-01-08 Thread Martin Stenderup
A month from??? When was this written? >From faq: JDK 1.2 The system is running on x86 and PowerPC, with ports underway to SparcLinux and some other processors. Currently it's native threads only. Before we can release, we have to make sure that it passes the tests in the Java Compatibility Ki