JIT ????

1998-10-06 Thread Mehrdad Jahansoozi
Greetings, Apparently, There is a confusion between JIT compiler, and JIT virtual machine( VM ). I was looking for a linux ( VM ) and I thought clarify Java classes need ( VM ) to run. VM is platform specific. A compiler is what creates Java classes from xxx.java files. I compile my java f

JIT ????

1998-10-06 Thread Mehrdad Jahansoozi
Greetings, Apparently, There is a confusion between JIT compiler, and JIT virtual machine( VM ). I was looking for a linux ( VM ) and I thought clarify Java classes need ( VM ) to run. VM is platform specific. A compiler is what creates Java classes from xxx.java files. I compile my java f

A very elementary question ?

1998-11-25 Thread Mehrdad Jahansoozi
Hi, I installed JDK 117 on a newly and painfully installed Linux Red Hat 5.1 I wrote a small Java program. When I type /MyJavaDir/jdk117/bin/javac /MyyestDir//Test.java Test.class is generated Then I type /MyJavaDir/jdk117/bin/java /MyyestDir//Test I get a message invalid class name: /

Linux IDE

1998-11-30 Thread Mehrdad Jahansoozi
Hi There, I am looking for a try first buy later decent stable IDE for Java for Linux platform. Does anybody know of such a thing. Regards, Mehrdad

Re: Servlets ??

1998-12-04 Thread Mehrdad Jahansoozi
To run a servlet one need a servlet enabled server. There are few such beasts written in Java check sun site and also javasoft site for servlet enabled server written in pure Java they come with full readable instruction. I saw the codes for one of them it was a server listening on port 8080 and

Re: Maximum Heap Size

1998-12-08 Thread Mehrdad Jahansoozi
This is usual in multithreaded programs There are two solutions to these sorts of problems 1) Limit the number of threads to 5 at any time. 2) Write the data on a temporary files and read it later. Which one is a mater of time ( speed ). If you are reading over a network, pipe the data directly

Re: Read Huge file using Java

1998-12-17 Thread Mehrdad Jahansoozi
One solution is read line by line process it write to a temporary file on you hard drive . This way you need say a StringBuffer as big as a line long 500 should do it although it does not matter. Every time you start a new line use setLength( 0 ); and start appending . When you are done do what e

Re: An IDE for C and JAVA

1998-12-22 Thread Mehrdad Jahansoozi
I believe there is a family of development tools referred to as RAD . Apparently VisualAge and Visual Cafe are members of this family. A RAD gives you the tool to drag and drop GUI elements such as labels buttons. I would love to see a RAD for linux. Other than Visual Cafe the rest of the IDE and

Re: Question from a beginner

1998-12-29 Thread Mehrdad Jahansoozi
Check these links http://www.blackdown.org http://java.sun.com/docs/books/tutorial Mehrdad [EMAIL PROTECTED] wrote: > I would like to learn Java, I have a good understanding of C. > can you recommend > 1] Which versions(distribution) of Java, Linux, openwindows and any > development kit

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