排序
7 Smart Ways to Find and Replace Text in a Word Document Using Java
7 Smart Ways to Find and Replace Text in a Word Document Using Java,Our Syncfusion Java Word Library (Essential DocIO) allows you to create, read, and edit Word documents programma...
How to display uploaded file in html using JavaScript
How to display uploaded file in html using JavaScript,How to display uploaded file in html using JavaScript Today we will see how to upload files in html using JavaScript. You must...
Couchbase Java Client Tuning
Couchbase Java Client Tuning, Couchbase is the most popular NoSQL database. In Trendyol, we are using Couchbase to store all microservice data. (Products metadata, Stock, Personali...
Cleaner Data classes with Project Lombok
Cleaner Data classes with Project Lombok,Article originally posted on my personal website under How to use Lombok in your Java projects One thing that I like about Java is the vast...
Parsing cookie strings in Java with HttpCookie
Parsing cookie strings in Java with HttpCookie,The other day I was solving a very complex bug involving some sticky session cookies and multiple reverse proxies. During the bug sol...
Inorder Traversal – Iterative
Inorder Traversal - Iterative, Problem Statement Given a binary tree. Find the inorder traversal of the tree without using recursion. Sample Test Cases Example 1 Input: 1 / \ 2 3 /...
Twitter API
Twitter API,Twitter Provides API for developers to use these API to create applications, send message in twitter, post content, post tweets etc. Twitter lets gives a monthly cap of...
6 Responsibilities Of Controllers (Spring As An Example)
6 Responsibilities Of Controllers (Spring As An Example), What Is A Controller Anyways? 🧐 It acts as the entry point to our backend application from the outside world. By outside ...
Set Page Size and Page Orientation for Word Document Using Java
Set Page Size and Page Orientation for Word Document Using Java,Usually the default page size of a Word document is A4, and sometimes we may need to change the page size to meet di...
Operators in Java Explained
Operators in Java Explained,Operator are those who performs an action, for example + is an arithmetic operator that perform addition. They are various types of operators are availa...
What are the differences between HashMap and Hashtable in Java?
What are the differences between HashMap and Hashtable in Java?,Hashtables and HashMaps are both used to store data in key-value pairs. To store unique keys, both use the hashing a...
Write Better Java Project
Write Better Java Project, Introduction When we first started our coding journey. The program used to be short. The compiler was enough to know all the technical errors and warning...