Tag Archives: java

Print screen using java

Is there any api for capure my screen ..? You no need any api. Java have Is there any api for capure my screen ..?the inbuild functionalities for this. Using the Robot class you can print your screen. Here is … Continue reading

Posted in Programming | Tagged | Leave a comment

Jsp to Servlet converter

Jsp to Servlet converter Here is the Ant build file to convert jsp file to servlet file. jspc (JavaServerPages Compiler) tool is helping to convert the jsp. The requirements are you need java sdk apache tomcat ant The build.xml is <project name="Test" … Continue reading

Posted in Programming | Tagged | Leave a comment

Java offline Documentation

Java offline Documentation why it is need ..? If you not have or limited bandwidth internet connecion in your machine at that time it is very helpfull to solve your java programming problems. The java documentation of your project is … Continue reading

Posted in Programming | Tagged | Leave a comment

How Singleton pattern in Java

How Singleton pattern in Java What is singleton ..? It is a Design pattern. At this time what is Design pattern ..? To find out the best way to do a thing apart from the various method. Documenting a solution … Continue reading

Posted in Programming | Tagged , | Leave a comment

Adding Remote JMX for Red5

How to Add JMX for Red5 Server Here we are going to know, How to managing red5 server remotely using JMX. what is red5 server ..? Red5 is an Open Source Flash Server written in Java that supports: Streaming Video … Continue reading

Posted in Flash, Linux, Programming | Tagged , , , | 3 Comments

Secure login using java servlet

The user authentication is the common task when we create a web application. The servlet have j_security_check  authentication method. This is commonly called as form based authentication. Here the steps for this authentication. This is in your index.jsp or login … Continue reading

Posted in Programming | Tagged | 2 Comments