How to Read password-protected Excel in java?

This article shows you how to read password-protected Microsoft Excel documents using Apache POI in java. Microsoft Excel documents generally come in two different formats Excel 97(-2003) and Excel(2007+). ie XLS and XLSX formats. Reading protected documents is format-dependent and needs to be implemented per format differently. But using WorkbookFactory class, we would write a generic …

How to Read password-protected Excel in java? Read More »

How to create password-protected Excel in java?

This article shows you how to create a password-protected Microsoft Excel file using Apache POI. Microsoft Excel documents generally come in two different formats Excel 97(-2003) and Excel(2007+). ie XLS and XLSX formats. How to password protect an excel file? Encryption is format-dependent and needs to be implemented per format differently. Password protect XLS file …

How to create password-protected Excel in java? Read More »

How to read Excel files in java using Apache POI?

The Excel spreadsheet is the very popular file format created by Microsoft. Apache POI is a pure java library developed for reading and writing Microsoft files(eg. Excel spreadsheet, Word, PowerPoint, etc.). In this article, you will see how to read Excel files using the Apache POI library. Apache POI Setup in Eclipse IDE There are …

How to read Excel files in java using Apache POI? Read More »

Drag & Drop or Browse File upload in JavaScript

Uploading files is a common feature in modern web applications. Traditionally, file inputs have been implemented using the standard HTML <input type=”file”> element. In this article, you will see how to create a standard drag & drop file uploader user interface(UI) in javascript. Drag and drop upload makes it much easier for the user to …

Drag & Drop or Browse File upload in JavaScript Read More »

CSS – Most common CSS properties Part-2

In this article of most common CSS properties Part-2, you will see the commonly used properties such as Text, Fonts, Overflow, Align, and Display. CSS Text In CSS, the text properties are used to manipulate the text of an HTML element. Followings are few most common CSS text properties: color text-align text-decoration text-transform text-shadow Text …

CSS – Most common CSS properties Part-2 Read More »