Java

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

How To Create a Minecraft Server on Ubuntu 20.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
Como Instalar o Apache Tomcat 9 no Debian 10 — step-by-step Linux tutorial on Progressive Robot

Como Instalar o Apache Tomcat 9 no Debian 10

O Apache Tomcat é um servidor web e um servlet container que é usado para servir aplicações Java. O Tomcat é uma implementação open source das tecnologias Java Servlet e JavaServer Pages, lançada pela Apache Software Foundation. Este tutorial aborda a instalação básica e algumas…

Read more
How To Install Java with Apt on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Install Java with Apt on Ubuntu 18.04

In this guide, you will install various versions of the Java Runtime Environment (JRE) and the Java Developer Kit (JDK) using `apt` . You’ll install OpenJDK as well as official packages from Oracle. You’ll then select the version you wish to use for your projects. When you’re finished, you’ll be able to use the JDK to develop software or use the Java Runtime to run software.

Read more
How To Set Up a Kafka Consumer to Receive Data Through CLI — step-by-step Programming tutorial on Progressive Robot

How To Set Up a Kafka Consumer to Receive Data Through CLI

Learn how to create a Java program that consumes data from a Kafka topic using the Kafka client libraries. Understand how Kafka manages multiple consumers, tracks their progress, and manually reports consumer progress back to the cluster. Improve your Kafka skills with this step-by-step tutorial.

Read more
Como instalar o Apache Tomcat 9 no Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

Como instalar o Apache Tomcat 9 no Ubuntu 18.04

O Apache Tomcat é um servidor Web e um contêiner servlet que é usado para atender aos aplicativos Java. O Tomcat é uma implementação de código aberto das tecnologias do Java Servlet e JavaServer Pages, lançadas pela Apache Software Foundation. Este tutorial aborda a instalação…

Read more
Java 8 Interface Changes - static method, default method — step-by-step Programming tutorial on Progressive Robot

Java 8 Interface Changes – static method, default method

URL: https://www.progressiverobot.com/java-8-interface-changes-static-method-default-method/ Java 8 interface changes include static methods and default methods in interfaces. Prior to Java 8, we could have only method declarations in the interfaces. But from Java 8, we can have default methods and static methods in the interfaces. Java 8 Interface ![java 8 interface changes, java 8 interface, java interface static […]

Read more
Java ClassNotFoundException - java.lang.ClassNotFoundException — step-by-step Programming tutorial on Progressive Robot

Java ClassNotFoundException – java.lang.ClassNotFoundException

URL: https://www.progressiverobot.com/java-classnotfoundexception-java-lang-classnotfoundexception/ Java ClassNotFoundException Java ClassNotFoundException occurs when the application tries to load a class but [Classloader](/community/tutorials/java-classloader) is not able to find it in the classpath. Common causes of java.lang.ClassNotFoundException are using Class.forName or ClassLoader.loadClass to load a class by passing String name of a class and it's not found on the classpath. ClassNotFoundException is […]

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

Enum in Java

URL: https://www.progressiverobot.com/java-enum/ Enum was introduced in Java 1.5 as a new type whose fields consists of a fixed set of constants. For example, we can create directions as Java Enum with fixed fields as EAST, WEST, NORTH, and SOUTH. Java Enum !java enum, enums in java In this tutorial, we will learn know how to […]

Read more
Java Inner Class — step-by-step Programming tutorial on Progressive Robot

Java Inner Class

URL: https://www.progressiverobot.com/java-inner-class/ Java inner class is defined inside the body of another class. Java inner class can be declared private, public, protected, or with default access whereas an outer class can have only public or default access. Java Nested classes are divided into two types. ### static nested class If the nested class is static, […]

Read more
How to open a File in Java — step-by-step Programming tutorial on Progressive Robot

How to open a File in Java

URL: https://www.progressiverobot.com/java-open-file/ Sometimes we have to open a file in java program. java.awt.Desktop can be used to open a file in java. Desktop implementation is platform dependent, so first, we should check if the operating system supports Desktop or not. This class looks for the associated application registered to the current platform to open a […]

Read more
CHAT