Java 8 Streams filter examples

  • 06 July 2017
  • ADM

Java 8 Streams filter examples. Simple examples comparing the classic approach pre-Java 8 and using the new Java 8 functionalities.


How to display folder tree structure in command line

  • 05 July 2017
  • ADM

How to see folder tree structure in command line using tree command.


How to create tiny HTTP server in Java

  • 08 May 2017
  • ADM

How to create tiny HTTP server in Java using ServerSocket class.


Enum examples in Java

  • 24 April 2017
  • ADM

Enum examples in Java. Simple enum usage. How to convert String to Enum object. Enum object with fields and methods.


FTP file upload using cURL

  • 14 February 2017
  • ADM

How to upload files to FTP using cURL command line. The command is very simple: curl -T backup-file.tar.gz ftp://username:password@ftp.server.com/backup/


How to skip Maven unit tests

  • 18 October 2017
  • ADM

How to skip Maven unit test using Maven feature maven.test.skip and surefire plugin property skipTests.