JDBC
Java Database Connectivity I’ll start off with a small example and then give a couple of pointers regarding JDBC.
Read more.Java NIO.2
Non blocking IO in Java, released with Java 7. Path Path represents a path on the storage system to a
Read more.Java IO
Yes, there are so many different Stream classes. (Now I am talking about IO Streaming) Here are some tips to
Read more.Concurrency: threats or Threads
In this post I go over the basis of concurrent execution in Java. I advise you to run the code
Read more.All is good.. except for Exceptions
Point Out The Mistakes public class Mistakes { public static void main(String
Read more.It’s time..
Did you know: Month.JANUARY is the same as Month.of(1) Month is an enum Month.JANUARY == 1 does not compile since
Read more.Trick Question
What is the output of the following code snippet: import java.time.*; public class DaylightSaving { public static void main(String
Read more.OCP: Functional Programming in Java
Java8 revolutionised Java programming with the introduction of functional programming. Here is a little quiz (you ‘ll find the answers
Read more.Collections: Did you know ..
Did you know: that LinkedList implements both Queue and List that this means you can remove and add items from
Read more.Generics
Did you know that: classes used as generic type parameters possibly have nothing to do with each other. public class
Read more.