Custom Search

Reading Microsoft Word Document in JAVA

When it comes to reading Microsoft Office Word document Java does not have any in build classes to handle this but Apache POI Package developed by Apache Foundation gives you the power of reading Microsoft Word document in Java. More information on the Apache POI package can be found at Apache POI

Bookmark It

Hide Sites

JSON in JAVA

JSON is being widely used in Web Technology for data transfer in JavaScript. But with AJAX coming into picture JSON has become the most popular tool for sending data from remote page to the calling page. Well there are different packages available for implementing JSON in Java. Here i am using one of the package […]

Modifying / Editing XML Document in JAVA

Unlike PHP, C# or Asp.Net working with XML in Java is very big headache. I spend more than a day on Google searching for modifying an xml document in java. Finally i managed to get bits and pieces code snippets from various site and This article will guide you how we can modify the xml […]

Date Manipulation in JAVA

I had an requirement on date manipulation in Java and i had a very hard time searching on google. Finally i came to know on how to manipulate dates in Java and with this article i will be showing code snippets on the same. This code snippets is applicable in Core Java, JSP and Servlet […]

HTTP POST File Content in JAVA

In Web scenario we have two method to send content to other page “GET” and “POST”. Though in “GET” method developers enjoys the flexibility of checking the content getting passed but there is limit for sending data. As compare to “GET” method “POST” enjoys the flexibility for sending unlimited data and using this method we […]

Uninstall Java Development Kit on Linux Systems

Sometimes you want JDK5 compiler source and JDK6 is installed on your machine, oops in this case if JDK5 is not installed then JDK5 cannot be installed as newer version is already installed. Now in this scenario we have to uninstall JDK6 so that JDK5 can be installed. There are no specific uninstall file provided […]

HTTP Form POST Request using AJAX and Servlet

In Java World Servlets are popularly used for Model View Controller(MVC) Design Pattern. This article will guide you on writing AJAX based application that will post data to Servlet and will fetching the computed data from the Servlet. With this approach the page will get the updated content from the server without refreshing the jsp/html […]

Ajax Programming with JSP and Servlets

In Java World Servlets are popularly used for Model View Controller (MVC) Design Pattern. This article will guide you on writing AJAX based application for fetching data from the Servlet and showing it on JSP page.

Bookmark It

Hide Sites

CrossBrowser Java Plugin detection using JavaScript

In this article we will understand how to detect whether the client browser has Java Plugin Installed. This process involves communication between Java and JavaScript.

Bookmark It

Hide Sites