Arivazhagan Arutchelvam

Greenhorn
+ Follow
since Feb 19, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Arivazhagan Arutchelvam

Is it the right way to use recursive funtions?

If not what is the alternate?
17 years ago
So it concludes that, it is not possible to create instance for a class having only private constructors, anywhere else in the same class itself
17 years ago
Thanks Jesper Young.

Is there any difference between the Final Class and a Class with a private constructor in any other context?
[ February 20, 2008: Message edited by: Arivazhagan Arutchelvam ]
17 years ago
What were the certifications available for Software Architect?
Is it possible to extend a class which is having only a private constructor?

If so does it means the same to have a final class and a class with the private constructor?
17 years ago
You can use a seperate try/catch block to close the stream but not within a finally block.
[ February 19, 2008: Message edited by: Arivazhagan Arutchelvam ]
17 years ago
If you are using tomcat then you can find your log files under the folder
Tomcat5.0/logs/

Note: the tomcat version may change
17 years ago
I think it should work with <jsp:forward page="<%=pageFrames%>" />.

If not delete the work folder under your tomcat and then try.
17 years ago
JSP
When you use primitive data types such as int,float, double etc., in your System.out.println() statement the value of the data is printed. But when you use an object reference in the System.out.println() statement the object toString() method is called and output of the toString() method(String) is printed in the console.
[ February 19, 2008: Message edited by: Arivazhagan Arutchelvam ]
17 years ago
You should not hardcode the file path in the servlet. If you hardcoded it, then there must be a folder structure matching your file path, must be present in the server machine.
17 years ago