java.lang.ArrayIndexOutOfBoundsException: 0
Problem This ArrayIndexOutOfBoundsException: 0 means that the index 0 is not a valid index for your array args[], which in turn means that your array is empty. In this particular case of a main() method, it means that no argument was passed on to your program on the command line. Possible solutions If you’re running … Read more