
Java 8 stream is a powerful feature of the Java programming language that allow you to process collections of data in a declarative and functional style. In this tutorial, we will take a look at the basics of Java streams…

Sending email is important part in web app development. It helps you to grow your business. This tutorial is about spring boot email template example. We will learn how to send email in spring boot using freemarker. Mail and Freemarker…

Today we will learn how to send email in Java using gmail. It’s very easy and it will be a very quick tutorial. We are gonna use a library called Javax mail api. Below you can download the library based…

ValueAnimator is fun. Specially when you want to add some fancy animation in android app. Some simple example code is written below. ValueAnimator example 1: Result: ValueAnimator example 2: Result:

If you need to save data locally in your app, room database will be the best database system for android. Today we will describe room db tutorial and learn how to implement and use room database in android using java.…
In this tutorial we will learn how to sort a steam. Below some example has been shown. Java stream sort in ascending order Example of ascending sort Result Java stream sort in descending order Example of descending sort Result This…
This tutorial will show you some use of Java 8 Streams. We will learn how to use collect(), filter(), findAny() and orElse(). filter and collect Result filter, findAny and orElse Result: filter and map

Now a days JSON is extremely popular. In software engineering you can’t think without it. JSON means Javascript object notation. If you are a java programmer or android developer, you are familiar with the name called POJO. Here POJO means…

Let’s imagine if you want to get notified from your server side when a new youtube video is uploaded or edited in a particular channel, so that you can take any action like sending email to your users or sending…

Developing android apps is a very hardworking task. It is not that simple and easy. On top of it when we have to share the APK for testing it become a nightmare if we do not use any proper tools.…