Programming

How To Work with Strings in Ruby — step-by-step Programming tutorial on Progressive Robot

How To Work with Strings in Ruby

A string is a sequence of one or more characters that may consist of letters, numbers, or symbols. In this tutorial, you’ll learn how to work with strings in Ruby. You’ll create strings, display them on the screen, store them in variables, join multiple strings together, and learn how to handle special characters such as newlines, apostrophes, and double quotes.

Read more
Installing Java on Windows 7 Ultimate 64-bit — step-by-step Programming tutorial on Progressive Robot

Installing Java on Windows 7 Ultimate 64-bit

Recently I bought a new desktop system and installed Windows 7 Ultimate 64-bit on it. Being a Java Developer, the first thing I did after regular setup is to download and install JDK. I was using Windows XP, Solaris or Mac OS for my development purpose till now and I was installing it for the first time on Windows 7 64-bit OS.

Read more
Java 9 Features with Examples — step-by-step Programming tutorial on Progressive Robot

Java 9 Features with Examples

URL: https://www.progressiverobot.com/java-9-features-with-examples/ Java 9 is a major release and it has brought us a lot of features for developers. In this article, we will look into Java 9 features in detail. Java 10 has been released, for a complete overview of Java 10 release, go through [Java 10 Features](/community/tutorials/java-10-features). Java 9 Features ![java 9 features](images/java-9-features-with-examples-section-1.png) […]

Read more
Java Collections sort() — step-by-step Programming tutorial on Progressive Robot

Java Collections sort()

URL: https://www.progressiverobot.com/java-collections-sort/ Today we will look into Java Collections sort method. While working with [Collections in java](/community/tutorials/collections-in-java-tutorial), more than often we need to sort the data. Java Collections sort() Java Collections class provides us with a very convenient method Collections.sort() to sort all [List](/community/tutorials/java-list) implementations such as [LinkedList](/community/tutorials/java-linkedlist-linkedlist-java) and [ArrayList](/community/tutorials/java-arraylist). There are two overloaded Collections.sort() […]

Read more
Java File separator, separatorChar, pathSeparator, pathSeparatorChar — step-by-step Programming tutorial on Progressive Robot

Java File separator, separatorChar, pathSeparator, pathSeparatorChar

URL: https://www.progressiverobot.com/java-file-separator-separatorchar-pathseparator-pathseparatorchar/ java.io.File class contains four static separator variables. Here we will learn about them and when to use it. File.separator: Platform dependent default name-separator character as String. For windows, it's '\' and for unix it's '/'. File.separatorChar: Same as separator but it's char. File.pathSeparator: Platform dependent variable for path-separator. For example PATH or CLASSPATH […]

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

Java JSON Example

URL: https://www.progressiverobot.com/java-json-example/ Welcome to the Java JSON Example Tutorial. JSON (JavaScript Object Notation) is text-based lightweight technology for generating human readable formatted data. JSON represent object data in the form of key-value pairs. We can have nested JSON objects too and it provides an easy way to represent arrays also. Java JSON ![java json, java […]

Read more
Java QR Code Generator - zxing example — step-by-step Programming tutorial on Progressive Robot

Java QR Code Generator – zxing example

URL: https://www.progressiverobot.com/java-qr-code-generator-zxing-example/ Today we will look into the Java QR code generator program. If you are tech and gadget savvy, then you must be aware of the QR code. You will find it everywhere these days – in blogs, websites, and even in some public places. This is very popular in mobile apps, where you […]

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

Java Set – Set in Java

URL: https://www.progressiverobot.com/java-set/ — Java Set is a collection of elements (Or objects) that contains no duplicate elements. Java Set is an interface that extends Collection interface. Unlike List, Java Set is NOT an ordered collection, it's elements does NOT have a particular order. Java Set does NOT provide a control over the position where you […]

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

Java switch case String

URL: https://www.progressiverobot.com/java-switch-case-string/ Today we will look into Java Switch Case String Example. Being a java programmer, I know the importance of String and how many times it's used for conditional flow. Whether you have a simple method that behaves differently for different input String or a Servlet controller class to check the incoming action and […]

Read more
CHAT