Java

How To Install Apache Tomcat 8 on CentOS 7 — step-by-step Linux tutorial on Progressive Robot

How To Install Apache Tomcat 8 on CentOS 7

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 8 on your CentOS 7 server.

Read more
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
How To Use Java HttpURLConnection for HTTP GET and POST Requests — step-by-step Programming tutorial on Progressive Robot

How To Use Java HttpURLConnection for HTTP GET and POST Requests

URL: https://www.progressiverobot.com/java-httpurlconnection-example-java-http-request-get-post/ Introduction The HttpURLConnection class from java.net package can be used to send a Java HTTP Request programmatically. In this article, you will learn how to use HttpURLConnection in a Java program to send GET and POST requests and then print the response. Prerequisites For this HttpURLConnection example, you should have completed the [Spring […]

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

Java long to String

URL: https://www.progressiverobot.com/java-long-to-string/ Today we will see different ways to convert long to string in java. Java long to string conversion can be done in many ways, we will go through them one by one with example code snippets. Java Long to String !java long to string Let's look at different code snippets for java long […]

Read more
Java REPL - jshell — step-by-step Programming tutorial on Progressive Robot

Java REPL – jshell

URL: https://www.progressiverobot.com/java-repl-jshell/ Java REPL or jshell is the new tool introduced in [java 9](/community/tutorials/java-9-features-with-examples). Today we will look into Java REPL basics and run some test programs in jshell interface. Java REPL Let's first try to understand why REPL support was added in Java, if it was that important then why in so late release. […]

Read more
CHAT