Java 38
Garbage Collection in java
What is garbage? In oop programming when an object is not referred in a program at present or in future that object is called garbage. What is garbage collection? The process of Collecting all the memories occupied by these garbage objects are called garbage collection. Generally this process happens in two steps:- […]
Java Native Access (JNA)
what are the benefits of java native access ? Ans: If a software is designed for a specific platform like windows , then it is always be better to use the native code for creating software.This helps to increase the performance of the system. For example one can call a windows based DLL from a […]
About Base 64 Encoding
What is base64 encoding? It is a way of encoding/decoding the binary data. It represents binary data in ASCII format. What are the benefits of base64 encoding? It is used in email systems, As most of the email system allows transmission 6to 7 bits. Base 64 encoding allows 8bit data to transmit in these systems. […]
Apache POI Demo
Apache Poi Demo Introduction Apache poi project provides a jar file of API, by using API’s method we can create , read ,write Microsoft office objects like ms word,excel, power point, visio,outlook. Download Link The jar file name that i downloaded for my demo is (poi-3.8-20120326.jar ) http://poi.apache.org/download.html Configuring in the eclipse 1. Create a […]