Category Archives: Java

Java Command Line Arguments

If you have used other languages, you will probably be familiar with the idea of passing arguments to a program via the command line. This post shows you how you can do it with java. In this post we’ll use a simple script to also take arguments from the command line. Read more about getting… Read More »

Simple Java Example

Java is a popular, general-purpose programming language for a range of tasks including web applications, games development and data analysis. Part of the appeal of Java is that it compiles to java byte code which can be run on any machine with the Java runtime environment installed. This means that developers only need to write… Read More »