Tag Archives: java

Get last date of month using java

Using Calendar class in java you get everything. We can get the last date of the month using that. Please have a look of this code snippest to get last date of the passing month. Here is the full code …

Read more »

Small FB hack

Don’t think I had broke the security system of facebook and got others personal information. I am not a such a knowledge person .. Just see the below picture Is this possible a human can click 2000 mouse click per …

Read more »

Image to binary data in java

Image to binary data in java Today i learn a new thing. That is come across like this way.. I tried to install “Bing” search provider to  my Mozilla Firefox. But that Bing favicon is not shown on the search …

Read more »

Java i18n properties file converter

Properties File converter Google Translator can convert any word/sentence from one language to other language. Now a days all web application have i18n support. The developers just create a properties file for English in key value format and then using …

Read more »

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 …

Read more »

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

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 …

Read more »

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 …

Read more »

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 …

Read more »

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 …

Read more »