How to display the content of a directory in Java

  • 20 January 2017
  • ADM

How to display the content of a directory in Java. Recursive method used to display all the sub-folders structure.


How to get the current working directory in Java

  • 17 January 2017
  • ADM

How to get the current working directory in Java using user.dir system parameter.


Java Properties file example

  • 07 December 2016
  • ADM

How to work with java Properties files. Properties files are key values file. The tutorial contains both read and write examples.


How to install maven on macOS

  • 06 December 2016
  • ADM

How to install maven on macOS. Simple 5 steps: download, extract, path, maven settings and test.


How to install golang on Raspberry PI

  • 17 March 2017
  • ADM

How to install golang on Raspberry PI. Example using apt-get and using the latest binary available.


How to delete directory in Java

  • 19 October 2016
  • ADM

How to delete directory in Java using File.delete() method. Recursive delete is applied if the directory is not empty.