Blog Posts

Recent posts

Java - Read CSV file from a stream

less than 1 minute read

1 2 3 4 5 6 7 try (final CSVReader reader = new CSVReader(new BufferedReader(new InputStreamReader(inputStream)))) { String[] line = null; while ((li...

Java - ForkJoinPool

less than 1 minute read

Good explanation on ForkJoinPool in Java http://www.baeldung.com/java-fork-join

Java - logging components and explanation

less than 1 minute read

LOGGERS: loggers are responsible for capturing events and passing them to the appropriate appender. APPENDERS: also known as handlers, appenders are responsi...