Re: class finalizer?

1999-01-14 Thread Chris Abbey
DOH! The signature was supposed to be: static void classFinalize() throws Throwable the one I gave was (obviously) instance finalization... see JLS ยง12.7. But it's a academic now, Javasoft has removed it from the JLS -- see http://java.sun.com/docs/books/jls/class-finalization-rationale.html for

JDK 1.2

1999-01-14 Thread Marcelino Cruz
Where is the link to the JDK 1.2? Thankx - MC

How close is Java 2 on Linux ?

1999-01-14 Thread Marc Jackson
Hey guys, is there a ETA for a i386 java 2 jdk ??? We are looking at seting up about 100 client machines to run our billing system on maybe a diskless linux configuration. cheers

Re: Java-VisiBroker CORBA on Linux with Blackdown Java 1.16/1.17 Howto

1999-01-14 Thread ZarX Gadzook
if youre on a lan, then there only needs to be one osagent running somewhere on the network, so if you can get a windows machine to do that, then you should be ok -buuda >Not only is it native binary, but it's a windows (as opposed to dos) >app. I tried to run osagent under dosemu on linux, ho

Re: Performance

1999-01-14 Thread nmeyers
Helge Hielscher wrote: > > I just wondered why my JAVA Programm runs so slow. xosview display > seldom more than 60% cpu load and a load of max. 0.2 and the Database > Server I use is also on low load 0.1, cpu<40%. > How can I increase the speed? TYA 1.2 doesnt work (problem with > JEditorPane).

Performance

1999-01-14 Thread Helge Hielscher
Hello, I just wondered why my JAVA Programm runs so slow. xosview display seldom more than 60% cpu load and a load of max. 0.2 and the Database Server I use is also on low load 0.1, cpu<40%. How can I increase the speed? TYA 1.2 doesnt work (problem with JEditorPane). Are there free (and easy to

RE: Apache and JServ Module

1999-01-14 Thread Jeff Sider
http://www.servletcentral.com/1999-01/jserv.dchtml this may help you out. -Original Message- From: Marc Dumontier [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 13, 1999 4:52 PM To: [EMAIL PROTECTED] Subject: Apache and JServ Module Has anyone gotten the apache jserv module to wo

a test, please ignore.

1999-01-14 Thread swang
some questions.

Re: applet access form data?

1999-01-14 Thread Robert Dietrick
If you're using Netscape, you can use LiveConnect to talk to JavaScript from a Java applet and vice-versa. In your applet you'll need to do something like this: import netscape.javascript.*; import java.util.*; public class MyApplet extends java.applet.Applet { JSObject window; Hashtable

RE: applet access form data?

1999-01-14 Thread brownphil
I don't think an Applet can access the form properties directly, but you can use JavaScript to bridge the gap between the form and the Applet. An example is attached. Note there is a difference between browsers and versions, but you can cover both in the code. The sample basically uses JavaScri

Re: How to get Netscape 4 working Swing and JMF Applets?

1999-01-14 Thread peter . pilgrim
I did all of this and it does work under Linux or Solaris. I think copying the jar to $MOZILLA/java/classes is best. Pete __ Reply Separator _ Subject: Re: How to get Netscape 4 working Swing and JMF Applets? Author: pridemor ([EMAI

THANX !!! getMonth() problem

1999-01-14 Thread Lee Sang Hoon

Re: Can't find getMonth Method

1999-01-14 Thread stoerk
On Thu, 14 Jan 1999, Moses DeJong wrote: > I think your code is wrong. It is attempting to allocate an object > of type java.util.Date.$getMonth which does not exist (javac thinks > getMonth is an inner class of the Date class). I do not know what > the "new" is doing there but I think you code s

Re: place to discuss with JDK source code

1999-01-14 Thread Ernst de Haan
Hi Kazuyuki (is that your first name?), SHUDO Kazuyuki wrote: > > Are there any places to have a discussion referring to > source code of JDK? I'd like to an i18n problem I've > found with JDK source code. > > Kazuyuki SHUDO Happy Hacking! If you find one, let me know.

place to discuss with JDK source code

1999-01-14 Thread SHUDO Kazuyuki
Are there any places to have a discussion referring to source code of JDK? I'd like to an i18n problem I've found with JDK source code. Kazuyuki SHUDO Happy Hacking!

RE: How to get Netscape 4 working Swing and JMF Applets?

1999-01-14 Thread peter . pilgrim
Thanks alot. Netscape's README is a bit of nonsense with regards to the CLASSPATH. If you make sure that the CLASSPATH is unset then everything work. I though about install the jars in $MOZILLA_HOME/java/classes or making symbolic links to the jars from $SWING_HOME and $JMFHOME but really I thin

Re: Can't find getMonth Method

1999-01-14 Thread Hariharan Narayanan
getMonth() is deprecated. As of JDK version 1.1.x, it has been replaced by Calendar.get(Calendar.MONTH) . Lee Sang Hoon wrote: > Hi ! everyon... > > I'm coding bulletin. > > but ERROR concured below ! > > > WriteCybbs.java:66: Class java.util.Date.

Re: [ATTENTION]: Mailing List Changes

1999-01-14 Thread chang hun Park
$)C mail :83;Av 86< REMOVE > > Carlo E. Prelz @[<:GT: > > > Subject: [ATTENTION]: Mailing List Changes > > Date: Sun, Jan 10, 1999 at 10:31:59AM -0600 > > > > Quoting Karl Asha ([EMAIL PROTECTED]): > > > > > Now my main request is for someone to hold my hand through gett

Re: Can't find getMonth Method

1999-01-14 Thread Martin Sorgatz
Lee Sang Hoon wrote: > Hi ! everyon... > > I'm coding bulletin. > > but ERROR concured below ! > > > WriteCybbs.java:66: Class java.util.Date. getMonth not found in type > declaration. > +new Date.getMonth()+"-" >

Re: JCK licensing restriction (was: JDK1.2)

1999-01-14 Thread Dirk Vanhalle
I must agree with Nathan. Nothing disturbs me (as a software developper) more than users filing more bug reports when I *know* there are still bugs. They might be new bugs, but chances are they are subtle variations of known bugs. It distracts you from your work, you loose time prioritizing and

Re: Returned mail: User unknown

1999-01-14 Thread RameshBabu
> Hi, > I have doubt that java passes arguments(for objects) by reference ? > > If yes then > this pass by reference is equals to c++ reference. > > and tell wihch are all objects ? (Strings are objects ???) > > I have sample prog. which makes to confuse. > please expla

Re: class finalizer?

1999-01-14 Thread Jason Dillon
a static finalize method causes the compiler (jikes in this case) to return: 93. public static void finalize () <-> *** Error: The static method "void finalize();" cannot hide the instance method --jason On 14-Jan-99 Chris Abbey wrote: >>Is there

Re: Can't find getMonth Method

1999-01-14 Thread Moses DeJong
I think your code is wrong. It is attempting to allocate an object of type java.util.Date.$getMonth which does not exist (javac thinks getMonth is an inner class of the Date class). I do not know what the "new" is doing there but I think you code should read: ... + Date.getMonth() + "-" ... I h

Can't find getMonth Method

1999-01-14 Thread Lee Sang Hoon
Hi ! everyon... I'm coding bulletin. but ERROR concured below ! WriteCybbs.java:66: Class java.util.Date. getMonth not found in type declaration. +new Date.getMonth()+"-" ^ Note: WriteCybbs.java uses a depre

problem with jdk117 and native threads

1999-01-14 Thread Moses DeJong
Hi all. Under blackdown's JDK1.1.7 v1a for linux an echo program will not work if it is run from a shell script. The same code will work perfectly if run without the -native argument or directly from the command line. The problem seems to be that a call to System.in.read() will block and never re

applet access form data?

1999-01-14 Thread youhq
can java applet read and write data form or to a form of HTML? How to do? Please tell me.thank