Autoboxing and Unboxing in Java

  • 12 October 2016
  • ADM

In Java, autoboxing is the automatic conversion between the primitive types and their corresponding object wrapper classes. Unboxing is the other way around.


How to format XMLGregorianCalendar

  • 10 May 2016
  • ADM

How to format XMLGregorianCalendar object output using SimpleDateFormat class in Java. Simple tested example.


Windows basics commands and tools for developers

  • 23 May 2016
  • ADM

Windows command prompt basics commands like ping, telnet, dir, cd, ipconfig and tools like Task Manager, Services, Registry.


JDBC Statement vs PreparedStatement

  • 05 April 2016
  • ADM

JDBC Statement vs PreparedStatement with example. Comparison between around SQL Injection using SELECT query.


How to create Builder design pattern in Java

  • 03 November 2016
  • ADM

How to create Builder Design Pattern in Java using simple example and comparison with classic instantiation.


How to find all files containing a text string on Linux

  • 20 May 2016
  • ADM

How to find all files containing a text string on Linux using grep command with exclude/include parameter.