This site uses cookies. By continuing to browse the site you are agreeing to our use of cookies.
Tag: java
AES encryption and decryption in Java and JavaScript
AES stands for Advanced Encryption Standard and it is a symmetric encryption algorithm. Many times we require to encrypt some plain-text...
Read a file line by line in reverse order in Java
We will write a java program that reads a file line by line in reverse order i.e., from end to start.
How to write to an Excel file in Java using Apache POI
Excel is the popular file format created by Microsoft and we will learn how to write data to an excel file using Apache POI.
How to read Excel file in Java using Apache POI
Excel is the popular file format created by Microsoft and we will learn how to read data from excel files using Apache POI.
Building a Restful CRUD API using Spring Boot, PostgreSQL,...
Spring Boot offers a fast way to build applications and with the help of it the setup time required for projects and configuration...
Spice up your Java using Project Lombok
Lombok is used to reduce boilerplate code for model/data objects, e.g., it can generate getters and setters for those objects automatically...
Understanding Java Streams - Part One
A stream is a collection, that allows data processing declaratively. It is a (possibly never ending) series of Objects.