Java SAX Parser Example
Java SAX Parser Example javax.xml.parsers.SAXParser provides method to parse XML document using event handlers. This class implements XMLReader interface and provides overloaded versions of parse() methods to read XML document…
Java Spliterator – Tutorial
Java Spliterator – Tutorial Like Iterator and ListIterator, Spliterator is a Java Iterator, which is used to iterate elements one-by-one from a List implemented object. Some important points about Java…
Java Stream distinct() Function
Java Stream distinct() Function Java Stream distinct() method returns a new stream of distinct elements. It’s useful in removing duplicate elements from the collection before processing them. Content1 Java Stream…
Java String Array – Tutorial
Java String Array – Tutorial Java String array is used to hold a fixed number of Strings. String array is very common in simple Java programs, especially among beginners to…
Java long to String – Tutorial
Java long to String – Tutorial Today we will see different ways to convert long to string in java. Java long to string conversion can be done in many ways,…
Java Socket Programming – Tutorial
Java Socket Programming – Tutorial Welcome to Java Socket programming example. Every server is a program that runs on a specific system and listens on a specific port. Sockets are…
Kotlin Data Class – Tutorial
Kotlin Data Class – Tutorial Do you get tired of writing thousands of lines of code for your POJO data classes in Java? Every Java Programmer at some stage must…
Key Components and Internals of Spring Boot Framework
Key Components and Internals of Spring Boot Framework Now we will discuss about “What are the main components of Spring Boot” and “How Spring Boot works under-the-hood”. Content1 Key Components…
JSON Server Tutorial
JSON Server Tutorial Today we will look into a very handy tool json-server, which can give you a mock rest json server in a minute. In a regular enterprise application,…