D

Datsabk

A technically sound person, oriented towards learning things logically rather than technically. It is my logical approach that has helped me learn and take up any programming language and start with coding. With a responsibility of Java based Web development professionally, I highly believe in imparting knowledge online for any technical subject that I can handle.

12 posts

Posts by Datsabk

In this article, we will discuss about how to read and write an excel file using Apache POI 1. Basic definitions for Apache POI library This section briefly describe about basic classes used during Excel Read and Write. HSSF is prefixed before the class name to indicate operations related to a Microsoft Excel 2003 file. […]

Read more Apache POI – Reading and Writing Excel file in Java

This article talks about reading and writing PDF using iText PDF library. pom.xml <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5.10</version> </dependency> P.S Tested with iTextPdf 5.5.10 1. iText – Write PDF iText PdfWriter example to write content to a PDF file. PdfWriteExample.java package com.mkyong; import com.itextpdf.text.*; import com.itextpdf.text.pdf.PdfWriter; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; public class […]

Read more iText – Read and Write PDF in Java

In this article, we will discuss about how to read and write an excel file using JExcel API, a simple library and widely used for simple operations which do not involve a high level of formatting and complex formulas based operations. P.S Tested with JExcel API – 2.6.12 1. Download JExcel Maven user. pom.xml <dependency> […]

Read more JExcel API – Reading and Writing Excel file in Java

The java.awt library provides 5 basic layouts. Each layout has its own significance and all of them are completely different. Here in this article, we will discuss how to apply any layout to a frame or a panel and also discuss about each layout in brief. The 5 layouts available in the java.awt library are: […]

Read more Java AWT Layouts