Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search Coderanch
Advance search
Google search
Register / Login
Kaarthick Ramamoorthy
Greenhorn
+ Follow
news
23
Posts
11
Threads
since Sep 01, 2006
Merit badge:
grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads
Recent posts by Kaarthick Ramamoorthy
How to verify Windows Service is started or not through Java?
I tried this. It works. Thank you Prime.
show more
16 years ago
Java in General
How to verify Windows Service is started or not through Java?
Hi all,
Could any one help me to verify whether Windows service is already started or not using Java?
Any API available?
Thanks in advance.
show more
16 years ago
Java in General
is class a static member?
Thanks for your interesting information.
show more
17 years ago
Java in General
is class a static member?
Hi all,
In the following code, How Test.class works? Is that
class
is a static member of Test or Object?. Please clarify me.
package common; public class Test { public static void main(String[] args) { System.out.println(Test.class); } }
Thanks in advance
Kaarthick
show more
17 years ago
Java in General
Refresh a jsp page automatically
I used JavaScript and it worked fine. Thanks for your replies.
show more
17 years ago
HTML Pages with CSS and JavaScript
Refresh a jsp page automatically
Hi all,
I would lilke to know how to refresh a JSP page automatically, say for two minute.
I tried META tag. It doesn't work.
Thanks in advance,
Kaarthick
show more
17 years ago
HTML Pages with CSS and JavaScript
ConcurrentLinkedQueue declaration problem
Thank you Ernest & Jim.
show more
17 years ago
Java in General
ConcurrentLinkedQueue declaration problem
Hi,
ConcurrentLinkedQueue<ArrayList<String>>[] queue = new ConcurrentLinkedQueue<ArrayList<String>>[5];
I would like to have array of queues that contains arrylist of strings. When I tried to declare as mentioned above, I could not.
The error thrown is, "cannot create a generic array of ConcurrentLinkedQueue<ArrayList<String>>"
Please help me.
show more
17 years ago
Java in General
Request time attributes
Akhil Maharaj,
I tried your two <jsp:include> tags:
1)
<jsp:include page="<%= value %>" />
2)
<jsp:include page="%= myURL %" />
The first one works fine without any error.
The second one doesn't work. It is clear that the syntax is wrong.
show more
17 years ago
Web Component Certification (OCEJWCD)
Configure Eclipse to Use JBoss
Hi,
I would like to configure Eclipse to Use JBoss Server so that it will be useful for me to deploy servlets & Beans easily in JBoss.
I tried downloading some plug-ins but doesn't solve the problem. So please help me in configuring and downloading plugins.
I am using Eclipse3.3.0 Europa.
Thanks in advance.
Kaarthck
show more
17 years ago
Other IDEs, Version Control
Why output is Null ?
Thank you, Thank You. I got it.
show more
18 years ago
Programmer Certification (OCPJP)
Why output is Null ?
Could anybody explain the flow of execution and how it prints Null
show more
18 years ago
Programmer Certification (OCPJP)
Why output is Null ?
Hi,
Please clarify the output.
class Parent { String s = "Parent"; public Parent(){method();} public void method(){System.out.println(s);} } class Child extends Parent { String s = "Child"; public Child(){} public void method(){System.out.println(s);} } public class MyThread { public static void main(String[] args) { Child child = new Child(); } }
}
show more
18 years ago
Programmer Certification (OCPJP)
Enums
Hi,
"Enums can be declared as a separate class " means Enums can be declared like class declaration.
class A
{
}
similiarly
enum e
{
}
show more
18 years ago
Programmer Certification (OCPJP)
get confusion in constructor execution
Hi Vaibhav Chauhan ,
Thank you. Thank you.
I understood.
show more
18 years ago
Programmer Certification (OCPJP)