Java

How To Install Apache Tomcat 9 on Debian 9 — step-by-step Linux tutorial on Progressive Robot

How To Install Apache Tomcat 9 on Debian 9

Apache Tomcat is a web server and servlet container that is used to serve Java applications. Tomcat is an open source implementation of the Java Servlet and JavaServer Pages technologies, released by the Apache Software Foundation. This tutorial covers the basic installation and some configuration of the latest release of Tomcat 9 on your Debian 9 server.

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

Java char to String, String to char array

URL: https://www.progressiverobot.com/java-char-to-string-to-char-array/ Today we will look into java char to String program. We will also learn how to convert String to a char array. Java char to String Before we look into java char to String program, let's get to the basic difference between them. char is a primitive data type whereas String is a […]

Read more
Java do while loop — step-by-step Programming tutorial on Progressive Robot

Java do while loop

URL: https://www.progressiverobot.com/java-do-while-loop/ Java do-while loop is used to execute a block of statements continuously until the given condition is true. The do-while loop in Java is similar to [while loop](/community/tutorials/java-while-loop) except that the condition is checked after the statements are executed, so do while loop guarantees the loop execution at least once. Java do while […]

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

Java i18n – Internationalization in Java

URL: https://www.progressiverobot.com/java-i18n-internationalization-in-java/ Internationalization in Java or Java i18n is a very important feature. Java provides internationalization (i18n) support through resource bundles. Internationalization in Java For making your application support different locales, we need to create locale specific properties file. The file names follow the pattern of bundle name with language code and country code, for […]

Read more
Java Multithreading Concurrency Interview Questions and Answers — step-by-step Programming tutorial on Progressive Robot

Java Multithreading Concurrency Interview Questions and Answers

URL: https://www.progressiverobot.com/java-multithreading-concurrency-interview-questions-answers/ Today we will go through Java Multithreading Interview Questions and Answers. We will also look into Concurrency interview questions and answers because both multithreading and concurrency go hand in hand. Thread is one of the popular topics in java interview questions. Here I am listing down most of the important java multithreading interview […]

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

Java ResultSet Tutorial

URL: https://www.progressiverobot.com/java-resultset/ Java ResultSet interface is a part of the java.sql package. It is one of the core components of the [JDBC Framework](/community/tutorials/jdbc-tutorial). ResultSet Object is used to access query results retrieved from the relational databases. ResultSet maintains cursor/pointer which points to a single row of the query results. Using navigational and getter methods provided […]

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.util.ConcurrentModificationException — step-by-step Programming tutorial on Progressive Robot

java.util.ConcurrentModificationException

Java Collection classes are fail-fast which means that if the Collection will be changed while some thread is traversing over it using iterator, the iterator.next() will throw ConcurrentModificationException. This situation can come in case of multithreaded as well as single threaded environment.

Read more
json-simple example — step-by-step Programming tutorial on Progressive Robot

json-simple example

URL: https://www.progressiverobot.com/json-simple-example/ json-simple is a simple java toolkit for JSON. json-simple library is fully compliance with JSON specification (RFC4627). json-simple ![json-simple, json simple example, json example](images/json-simple-example-section-1.png) json-simple uses [Map](/community/tutorials/java-map) and [List](/community/tutorials/java-list) internally for JSON processing. We can use json-simple for parsing JSON data as well as writing JSON to file. One of the best feature […]

Read more
CHAT