How to Read/Write Json in Java?

How to Read/Write Json in Java?

JSON-Java offers classes like JSONObject and JSONArray that offer various ways to create Json via overloaded constructors. They can be used to read Json as well.

2 min read
How to use String.join() method in Java?

How to use String.join() method in Java?

String.join() joins the given string elements with the specified delimiter by concatenating them with the delimiter and returns a new string. A collection of strings can also be joined by this method.

2 min read
How to Use Array in JavaScript

How to Use Array in JavaScript

Array in JavaScript is used to store an ordered collection of values. These values can be of any data type and can be 0 or more in numbers.

2 min read
What are the Different Datatypes in JSON

What are the Different Datatypes in JSON

We are all familiar with JSON but have you ever thought what are the datatypes used in the same? Check this article to learn more and get more clarity on the topic.

2 min read
Everything About Online Base64 Encoder/Decoder

Everything About Online Base64 Encoder/Decoder

What is Base64 Encoding? One binary-to-text encoding approach is called Base64. It converts binary data into a radix-64 representation so that it can be printed as an ASCII string.

2 min read
Benefits of Using Online Word Counter Tool

Benefits of Using Online Word Counter Tool

Are you curious about the word count in your document? Are you trying to find a quick and easy way to count the words in your text? If so, using an online word counter is the ideal answer.

2 min read
Advantages of Clean, Readable Code for Developers

Advantages of Clean, Readable Code for Developers

Code beautifying may appear to be a minor consideration in comparison to the code’s usefulness and efficiency. However, the value of writing clean, legible code cannot be emphasized.

2 min read
Everything About HTML Formatter And Beautifier

Everything About HTML Formatter And Beautifier

One tool that can improve the readability of HTML code is the HTML Formatter/Beautifier. Formatting and minifying the HTML code are the primary functions of this program.

2 min read
How to Generate Sitemap Dynamically in NodeJS

How to Generate Sitemap Dynamically in NodeJS

Sitemap can be added to a site statically if you know the URLs already or can be added dynamically if the URLs are dynamic. You can write a script to generate the sitemap.

2 min read
React Function Components with Examples

React Function Components with Examples

React function components are like Javascript functions that can receive props and return react elements. They can not have state hence called stateless components.

2 min read
React Class Component with Examples

React Class Component with Examples

A class component is a Javascript class which extends React.Component class. Class component defines methods that get executed during the lifecyle of that component.

2 min read
React Components Explained with Examples

React Components Explained with Examples

Components can be difficult to understand if you are new to ReactJS. In short, they are the core building blocks of an application. A react component is an independent and reusable piece of code.

2 min read
Spring Boot Hello World Program

Spring Boot Hello World Program

New to spring boot and looking to build your first program? Check this article to learn how to start your spring boot journey with a traditional Hello World program. Learn about Spring’s initializer project.

2 min read
How to Serve Static Resources in Spring Boot

How to Serve Static Resources in Spring Boot

Curious how to serve static resources like JavaScript files, images or html files from spring boot app? Check this article to learn where Spring looks at for static files and also how to customize this location.

2 min read
How to use SQL Cross Join with Examples?

How to use SQL Cross Join with Examples?

In SQL Cross Join, the result is a Cartesian product of the 2 tables (or more, if specified). This means that each row from first table is associated with each row from second table.

2 min read
RIGHT OUTER JOIN – Joining Multiple Tables in SQL

RIGHT OUTER JOIN – Joining Multiple Tables in SQL

RIGHT OUTER JOIN is also a type of OUTER JOIN which fetches you data from multiple tables but this time it fetches all the data from RIGHT table and only matching data from the LEFT table.

2 min read
SQL JOIN Explained with Examples

SQL JOIN Explained with Examples

JOIN is an SQL clause which is used to connect 2 or more table based on some common column and fetching data from them.

2 min read