Java

Core Java Tutorial — step-by-step Programming tutorial on Progressive Robot

Core Java Tutorial

Welcome to Core Java Tutorial. We have written a lot on Core Java and Java EE frameworks. There was no index post for Core Java tutorial and we used to get emails asking to make one so that any beginner can follow them and learn core java programming. Finally, we got time and here we […]

Read more
Como Instalar o Java com Apt-Get no Ubuntu 16.04 — step-by-step Linux tutorial on Progressive Robot

Como Instalar o Java com Apt-Get no Ubuntu 16.04

Java e o JVM (Máquina Virtual do Java) são largamente utilizados e requeridos para muitos tipos de software. Esse artigo irá guiá-lo através do processo de instalação e gerenciamento de diferentes versões de Java utilizando apt-get. Para seguir…

Read more
¿Cómo instalar Java con Apt-Get en Ubuntu 16.04? — step-by-step Linux tutorial on Progressive Robot

¿Cómo instalar Java con Apt-Get en Ubuntu 16.04?

Java y la JVM (Máquina Virtual de Java) son ampliamente utilizados y requeridos para muchos tipos de software. Este artículo lo guiará en el proceso de instalación y gestión de diferentes versiones de Java utilizando apt-get. Para seguir este…

Read more
Java read text file — step-by-step Programming tutorial on Progressive Robot

Java read text file

URL: https://www.progressiverobot.com/java-read-text-file/ There are many ways to read a text file in java. Let's look at java read text file different methods one by one. Java read text file ![java read file, java read text file](images/java-read-text-file-section-1.png) There are many ways to read a text file in java. A text file is made of characters, so […]

Read more
Java String Quiz — step-by-step Programming tutorial on Progressive Robot

Java String Quiz

URL: https://www.progressiverobot.com/java-string-quiz/ Welcome to Java String Quiz. String is one of the most important classes in Java. If you have done any programming in java, you must have used it. The string is very popular when it comes to java interview questions or quiz. So I have gathered some great and tricky java string quiz […]

Read more
Java Web Services Tutorial — step-by-step Programming tutorial on Progressive Robot

Java Web Services Tutorial

URL: https://www.progressiverobot.com/java-web-services-tutorial/ Welcome to the Java Web Services Tutorial. Here we will learn about web services, useful concepts in web services and then different types of API we have in Java to create web services. What is a Web Service In simple words, services that can be accessed over network are called web services. So […]

Read more
JUnit Assert Exception - JUnit 5 and JUnit 4 — step-by-step Programming tutorial on Progressive Robot

JUnit Assert Exception – JUnit 5 and JUnit 4

URL: https://www.progressiverobot.com/junit-assert-exception-expected/ We can test expected exceptions using [JUnit 5](/community/tutorials/junit5-tutorial) assertThrows assertion. This [JUnit assertion](/community/tutorials/junit-assertions) method returns the thrown exception, so we can use it to assert exception message too. JUnit Assert Exception Here is a simple example showing how to assert exception in JUnit 5. String str = null; assertThrows(NullPointerException.class, () -> str.length()); JUnit […]

Read more
CHAT