chinnasamy vijayakumar

Greenhorn
+ Follow
since Dec 02, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by chinnasamy vijayakumar

Anyway,
How much it is in India?
vijay
hai,
i am doing some of the java programs in RedHatLinux6.1.
I want to clear my screen..
That is i m in the prompt when my application runs i want to
clear my screen
how can i do this?
vijay
23 years ago
Thanks Mr. Gorakavi
Its worked fine

bye.
I found this problem with jdk 1.2.2 on RH LINUX VER 6.1
---------------------------
import java.io.*;
public class rectangle
{
public static void main(String args[])throws IOException
{
looping:
System.out.println("1 : update ");
System.out.println("2 : get area ");
System.out.println("3 : get circumference ");
BufferedInputStream b=new BufferedInputStream(System.in);
DataInputStream d=new DataInputStream(b);
System.out.println();
System.out.println();
System.out.println();
System.out.print("Enter the code : ");
String s=d.readLine();
int number=Integer.parseInt(s);

rect re=new rect();
if(number==1){
re.getdata();
continue looping;
}else
{if(number==2)
{
re.area();
}else
{
re.circum();
}
}

}
}
------------------------
The compiler says no label definition found

Why ?
vijay
i want to know the routine in JAVA to compute the length of an array

public class chararray
{
public static void main(String args[])
{
String str = "vijayakumar";
System.out.println(" String ----> "+str);
System.out.println(" Length ----> "+str.length());
char mychar[] = new char[str.length()];
for(int i=0 ; i<str.length();i++)>
{
System.out.println(str.charAt(i));
mychar[i] = str.charAt(i);
}
for(int i=0;i<getLength(mychar);i++)>
I want to store length of the array in an integer
Above program gives error ...
please correct me...
vijay
hai,
i have Redhat Linux 6.1 with JDK1.2 and my Apache 1.3.9.
Also I installed ApacheJserv in my Linux Box.
Now my problem is everything i have installed but not able to invoke my sevlet?
Please Help Me

vijay
23 years ago
hai,
i have RedHatLinux 6.1 with JDK1.2.
I also have Apache 1.3.9 as my weserver.
Now i want to do servlets in my apache ..
what i have to do...
the documentation i found in java.apache.org is
so confusing me..
help me
vijay
23 years ago
hai
i m also new to these new j2cp objectives...
anybody who has taken the exam pl. tell me abt this.
i m using java lang spec and Simon roberts ...
Anything else i have to prepare?

vijay