Java

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
How To Write Your First Program in Java — step-by-step Programming tutorial on Progressive Robot

How To Write Your First Program in Java

In this tutorial, you’ll create a simple “Hello, World!” program in [Java](https://www.java.com/en/). The “Hello, World!” program is a simple and complete first program for beginners, and it’s a good way to make sure your environment is properly configured. By creating a “Hello, World” program, you’ll start learning Java’s basic syntax as well as the compilation and execution process of a Java program. Once you’re finished, you’ll be able to write and run basic Java code.

Read more
Java 13 Features — step-by-step Programming tutorial on Progressive Robot

Java 13 Features

URL: https://www.progressiverobot.com/java-13-features/ Java 13 was released for production use on 17th September 2019. There are not a lot of developer-specific features in Java 13 because of the 6-month release cycle. Java 13 Features Some of the important Java 13 features are: Text Blocks – JEP 355 New Methods in String Class for Text Blocks Switch […]

Read more
Java BlockingQueue Example — step-by-step Programming tutorial on Progressive Robot

Java BlockingQueue Example

URL: https://www.progressiverobot.com/java-blockingqueue-example/ Today we will look into Java BlockingQueue. java.util.concurrent.BlockingQueue is a java Queue that support operations that wait for the queue to become non-empty when retrieving and removing an element, and wait for space to become available in the queue when adding an element. Java BlockingQueue ![Java BlockingQueue](images/java-blockingqueue-example-section-1.png) Java BlockingQueue doesn't accept null values […]

Read more
Java create new file — step-by-step Programming tutorial on Progressive Robot

Java create new file

URL: https://www.progressiverobot.com/java-create-new-file/ Creating a file is a very common IO operation. Today we will look into different ways to create a file in java. Java create file ![java create file, java create new file](images/java-create-new-file-section-1.png) There are three popular methods to create file in java. Let's look at them one by one. ### File.createNewFile() java.io.File class […]

Read more
Java GZIP Example - Compress and Decompress File — step-by-step Programming tutorial on Progressive Robot

Java GZIP Example – Compress and Decompress File

URL: https://www.progressiverobot.com/java-gzip-example-compress-decompress-file/ Welcome to Java GZIP example. GZIP is one of the favorite tool to compress file in Unix systems. We can compress a single file in GZIP format but we can't compress and archive a directory using GZIP like ZIP files. Java GZIP ![GZIP, Java GZIP Example](images/java-gzip-example-compress-decompress-file-section-1.png) Here is a simple java GZIP example […]

Read more
CHAT