
Monitoring your business website is beneficial for several reasons, not the least of which is theability to find potential problems and remove them before they become costly. It’s about muchmore than that, however; staying on top of the inner workings…

Android OS can kill your background service any time if it needs to free up the memory. But sometime developers need to keep it running for some task to be completed. So how do we do it? How do we…

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.…

As indicated by intexsoft.com, over 65% of cell phone clients in the U.S are iOS clients. In this way, when you construct portable apps, it is expected to deliver adaptations on iOS and Android gadgets. In any case, building stage…

The full stack developers in recent years have earned a lot of demands. The demand is so exhilarating that full stack development has almost become a trend in the job markets. While some consider this reputation and fame of full…
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