Handling XSLT Transformation in Java

In this tutorial we will see how to handle XSLT transformation in Java.

Applications are increasingly dealing with XML data in some or the other way. XML also provides a simple and seamless way for different applications to interact with each other irrespective of their platforms or implementation technology.
Continue reading “Handling XSLT Transformation in Java”

Additional features, Limitations and Alternatives to JExcel API

In this post we will review Additional features, Limitations and Alternatives to JExcel API.

We already reviewed tutorial for handling excel files in Java using JExcel API.

Additional Features:

Continue reading “Additional features, Limitations and Alternatives to JExcel API”

JExcel Jar Download

It seems many of our users are having a hard time finding the JExcel API jar to download.

We are providing it here for your convenience. Please read the license details of this API before you use it.
Continue reading “JExcel Jar Download”

Write to Excel in Java Using JExcel API

Having seen how to handle different data types in excel, in this tutorial we will see how to write to Excel in Java using JExcel API.

Here is the source of the program which writes an excel file with different data types: Continue reading “Write to Excel in Java Using JExcel API”

Reading Excel File in Java With Different Datatypes

As noted in the earlier tutorial, in real life applications, you may have to deal with Excel files containing data with multiple datatypes other than String. In this tutorial we will be reading excel file in Java with different datatypes

We will be trying to read the below excel, as it can be seen, the excel has Date, Number, Boolean and Label (regular string) data in the first four cells:
Continue reading “Reading Excel File in Java With Different Datatypes”

Reading Excel File in Java Using JExcel API

In this tutorial we will be reading Excel file in Java using JExcel API. Here is the Excel file we will be reading:

Reading Excel File In Java Using JExcel API
Continue reading “Reading Excel File in Java Using JExcel API”

Handling Excel Files in Java Using JExcel API

Introduction to JExcel API :

Most often applications are required to generate some or the other kind of report. Generating these reports in excel can be a great idea given that mostly everyone knows how to use excel, besides it provides a flexibility of sharing the reports. In this quick short series of tutorials we will see how to handle excel files in Java using JExcel API.
Continue reading “Handling Excel Files in Java Using JExcel API”

How to Export Web Page to Word (in JSP)

In previous post we saw how we can export the content displayed on a web page to an excel file. In this tutorial we will see how we can export web page to word file Continue reading “How to Export Web Page to Word (in JSP)”

How to Export Web Page to Excel (in JSP)

In this tutorial we will see how to export web page to excel in JSP. We will add Export to Excel functionality to an existing JSP.

Many times it is convenient for users to have an ability to export the contents of the page they are viewing to an excel Continue reading “How to Export Web Page to Excel (in JSP)”

Salt in Java for Password Security

In this tutorial we will try to understand the importance of password encryption using salt in Java.

MD5 and SHA are the most popular methods to add password based security to web application. Continue reading “Salt in Java for Password Security”