Core Java
-
Parsing XML using DOM, SAX and StAX Parser in Java
I happen to read through a chapter on XML parsing and building APIs in Java. And I tried out the…
Read More » -
Power of Java MemoryMapped File
Power of Java MemoryMapped File In JDK 1.4 an interesting feature of Memory mapped file was added to Java, which…
Read More » -
Five advanced Java Synchronizers you probably don’t know
Besides the common synchronize which is based in the lock bit that every Java object has, you have more sophisticated…
Read More » -
Lazy sequences implementation for Java 8
I just published LazySeq library on GitHub – result of my Java 8 experiments recently. I hope you will enjoy…
Read More » -
Look At It Carefully And You Will Find Something To Improve
I propose you an exercise: when you come back to work tomorrow morning, navigate through the source code of your…
Read More » -
Minor Gotchas from migration to Java 7
After several years of pushing, we are finally starting to pull our application out of the dark ages in terms…
Read More » -
Java Reflection oddities with inner class constructor parameters
About Java inner classes Java allows member classes (classes that are defined inside other classes), local classes (classes that are…
Read More » -
Java 8: CompletableFuture in action
After thoroughly exploring CompletableFuture API in Java 8 we are prepared to write a simplistic web crawler. We solved similar…
Read More » -
Java 8: Definitive guide to CompletableFuture
Java 8 is coming so it’s time to study new features. While Java 7 and Java 6 were rather minor…
Read More »