Core java
02 JanuarySystem.out.println shortcut in eclipse
Learn about System.out.println shortcut in eclipse.
31 DecemberJava Stream to List
In this post, we will see how to convert Stream to List in java. There are multiple ways to convert Stream to List in java. Using Collectors.toList() You can pass Collectors.toList() to Stream.collect() method to convert Stream to List in java. Stream’s collect method performs mutable reduction operation on elements of Stream and Collectors.toList() provides […]
30 DecemberRock Paper Scissors Game in Java
Learn about how to implement Rock Paper Scissors game in java.
30 December[Solved] Class names are only accepted if annotation processing is explicitly requested
Learn about how to fix class names are only accepted if annotation processing is explicitly requested in java.
30 December[Fixed] Initial heap size set to a larger value than the maximum heap size
Learn about how to fix Initial heap size set to a larger value than the maximum heap size in java.
30 DecemberHow to Get Day from Date in Java
Learn about how to get day name of week from date in java
30 December[Solved] Exception in thread “main” java.util.InputMismatchException
Learn about how to fix java.util.InputMismatchException.
29 December[Solved] uses unchecked or unsafe operations. recompile with -xlint:unchecked for details.
Learn about how to resolve uses unchecked or unsafe operations. recompile with -xlint:unchecked for details.
29 December[Fixed] uses or overrides a deprecated api. recompile with -xlint:deprecation for details.
Learn about how to fix uses or overrides a deprecated api in java.