Applet reloading problem.

2000-09-07 Thread Robert Pottschmidt
Hi,       Please forgive me for this post I am a newbie to system adm. Our setup is an academic server. Running Redhat 6.1 with Apache and Jserv. Our problem deals with a lab we assigned that all of our users where to do an applet using swing to draw a moiré pattern. When we view them on th

Re: Who is right?

2000-09-07 Thread Chris Abbey
At 01:45 9/8/00 +0200, Uli Luckas wrote: >Now the second bad news, if you decompile the code generated with either >javac or jikes you can see that the constructor call is really compiled >into the code. umm... no it isn't test.java: public class test { public static void main (String[]

Re: Who is right?

2000-09-07 Thread Joi Ellis
Jacob Nikom wrote: > > Hi, > > This is not really Java-Linux, but more like Java question. > May be it is different for Java Linux implementation, that is > why I decided to ask. > > My friend and I recently tried to figure out which String > implementation is more efficient and correct: > > S

Re: Who is right?

2000-09-07 Thread Juan Pablo Rivera
Hi: the two ways are ok!!! but the second one is rigth use more memory. - Original Message - From: "Jacob Nikom" <[EMAIL PROTECTED]> To: "Java-Linux listserver" <[EMAIL PROTECTED]> Sent: Thursday, September 07, 2000 5:26 PM Subject: Who is right? > Hi, > > This is not really Java-L

Re: Who is right?

2000-09-07 Thread Uli Luckas
Jacob Nikom wrote: > > Hi, > > This is not really Java-Linux, but more like Java question. > May be it is different for Java Linux implementation, that is > why I decided to ask. > > My friend and I recently tried to figure out which String > implementation is more efficient and correct: > > S

Who is right?

2000-09-07 Thread Jacob Nikom
Hi, This is not really Java-Linux, but more like Java question. May be it is different for Java Linux implementation, that is why I decided to ask. My friend and I recently tried to figure out which String implementation is more efficient and correct: String a = "bb" or String a = new Str

Some problem with file transfer server through server

2000-09-07 Thread Juan Pablo Rivera
Hi: I made a Server/Client Thread, it works fine but i don´t know how to get a file with the Client and send it to the Server from that connection. I have the conection under an imaginary port. I wonder if somebody can help me. ---

Re: problems with java

2000-09-07 Thread Nathan Meyers
On Thu, Sep 07, 2000 at 06:48:54PM +0200, Johan Groth wrote: > Hi, > After I installed 1.2.2 version of the JDK I tried to get a very simple > program to work. It looks like this: > > /** file hello.java **/ > /** --- **/ > > public class hello { > public static void main(String

Re: problems with java

2000-09-07 Thread Chris Kakris
Johan Groth wrote: > > Hi, > After I installed 1.2.2 version of the JDK I tried to get a very simple > program to work. It looks like this: > > /** file hello.java **/ > /** --- **/ > > public class hello { > public static void main(String args[]) { > System.out.println(

RE: problems with java

2000-09-07 Thread Brad Dolin
Title: RE: problems with java Hi, Try running with: /usr/local/jdk1.2.2/bin/java hello instead of /usr/local/jdk1.2.2/bin/java hello.class (java thought you were trying to run the 'class' class in package 'hello') > -Original Message- > From: Johan Groth [mailto:[EMAIL PROTE

Re: problems with java

2000-09-07 Thread Joi Ellis
Johan Groth wrote: > > Hi, > After I installed 1.2.2 version of the JDK I tried to get a very simple > program to work. It looks like this: > > /** file hello.java **/ > /** --- **/ > > public class hello { > public static void main(String args[]) { > System.out.println(

Re: problems with java

2000-09-07 Thread Sandeep Konchady
Hi Johan, Please use the runtime in the following manner $ /usr/local/jdk1.2.2/bin/java -classpath . hello (that is no adding of hello.class). Regards, Sandeep > Resent-Date: Thu, 7 Sep 2000 10:45:54 -0600 (MDT) > X-Accept-Language: en, sv > MIME-Version: 1.0 > To: [EM

problems with java

2000-09-07 Thread Johan Groth
Hi, After I installed 1.2.2 version of the JDK I tried to get a very simple program to work. It looks like this: /** file hello.java **/ /** --- **/ public class hello { public static void main(String args[]) { System.out.println("Hello, world"); } } I compiled it wi