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.


GET/POST request with HttpURLConnection in Java

  • 17 October 2016
  • ADM

How to send GET and POST requests using standard HttpURLConnection class from Java. Simple examples for both methods.


How to read XML file in Java using DOM

  • 12 July 2016
  • ADM

How to read XML file in Java using DOM. 2 methods: one reading each element by the name and second parsing the entire DOMobject.


Apache Maven Basic Operations

  • 22 June 2016
  • ADM

Apache Maven Basic Operations contains short description on maven commands like, clean, package, install, deploy, mvn eclipse:eclipse


How to read and write files in Java

  • 17 June 2016
  • ADM

How to read and write files in Java using BufferedReader and BufferedWriter. The example highlights the classic resource release and try-with-resource approach.