Java

Logger in Java - Java Logging Example — step-by-step Programming tutorial on Progressive Robot

Logger in Java – Java Logging Example

URL: https://www.progressiverobot.com/logger-in-java-logging-example/ Today we will look into Logger in Java. Java Logger provides logging in java programming. Logger in Java ![logger in java, java logging example](images/logger-in-java-logging-example-section-1.png) Java Logging API was introduced in 1.4 and you can use java logging API to log application messages. In this java logging tutorial, we will learn basic features of […]

Read more
Observer Design Pattern in Java — step-by-step Programming tutorial on Progressive Robot

Observer Design Pattern in Java

URL: https://www.progressiverobot.com/observer-design-pattern-in-java/ Observer Pattern is one of the behavioral design pattern. Observer design pattern is useful when you are interested in the state of an object and want to get notified whenever there is any change. In observer pattern, the object that watch on the state of another object are called Observer and the object […]

Read more
Serialization in Java - Java Serialization — step-by-step Programming tutorial on Progressive Robot

Serialization in Java – Java Serialization

URL: https://www.progressiverobot.com/serialization-in-java/ Serialization in Java was introduced in JDK 1.1 and it is one of the important feature of [Core Java](/community/tutorials/core-java-interview-questions-and-answers "Core Java Interview Questions and Answers"). Serialization in Java ![serialization in java, java serialization, what is serialization in java, serializable in java](images/serialization-in-java-section-1.png) Serialization in Java allows us to convert an Object to stream that […]

Read more
String to byte array, byte array to String in Java — step-by-step Programming tutorial on Progressive Robot

String to byte array, byte array to String in Java

URL: https://www.progressiverobot.com/string-byte-array-java/ Today we will learn how to convert String to byte array in java. We will also learn how to convert byte array to String in Java. String to byte array We can use String class getBytes() method to encode the string into a sequence of bytes using the platform's default charset. This method […]

Read more
Web Services Interview Questions - SOAP, RESTful — step-by-step Programming tutorial on Progressive Robot

Web Services Interview Questions – SOAP, RESTful

URL: https://www.progressiverobot.com/web-services-interview-questions-soap-restful/ Welcome to the Web Services Interview Questions with detailed answers. Recently I have written a lot about web services. How we can create SOAP and RESTful web services in Java. Web Services Interview Questions ![web services interview questions, restful web services interview questions, rest interview questions, soap interview questions](images/web-services-interview-questions-soap-restful-section-1.png) Here I am providing […]

Read more
Chain of Responsibility Design Pattern in Java — step-by-step Programming tutorial on Progressive Robot

Chain of Responsibility Design Pattern in Java

Chain of responsibility design pattern is one of the behavioral design pattern. Chain of Responsibility Design Pattern ![Chain of Responsibility Design Pattern, Chain of Responsibility Pattern, Chain of Responsibility Pattern Java, Chain of Responsibility](images/chain-of-responsibility-design-pattern-in-java-section-1.png) Chain of responsibility pattern is used to achieve loose coupling in software design where a request from client is passed to […]

Read more
Factory Design Pattern in Java — step-by-step Programming tutorial on Progressive Robot

Factory Design Pattern in Java

Welcome to the Factory Design Pattern in Java tutorial. Factory Pattern is one of the Creational Design pattern and it's widely used in JDK as well as frameworks like Spring and Struts. Factory Design Pattern ![factory design pattern, factory design pattern in java, factory pattern, factory method pattern, factory pattern example](images/factory-design-pattern-in-java-section-1.png) The factory design pattern […]

Read more
How To Create a Minecraft Server on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Create a Minecraft Server on Ubuntu 18.04

Minecraft is a popular sandbox video game. As of late 2019, it was the second best-selling video game of all time. In this tutorial, you will create your own Minecraft server so that you and your friends can play together. Specifically, you will install the necessary software packages to run Minecraft, configure the server to run, and then deploy the game.

Read more
CHAT