Author: Arpit Mandliya
- 11 January
Java LocalDate to Date
In this post, we will see how to convert LocalDate to Date. Java 8 has introduced a lot of new APIs for Date and time. There can be many ways to convert Java LocalDateTime to date. Using Instant object You can convert LocalDate to Date using Instant object which we can from Zone. Here is […]
- 04 January
How to change java version in intellij
Learn about how to change java version in intellij.
- 03 January
Generate SerialVersionUID in Intellij
Learn about how to generate SerialVersionUID in Intellij using different ways.
- 02 January
System.out.println shortcut in intellij
Learn about System.out.println shortcut in intellij.
- 02 January
System.out.println shortcut in eclipse
Learn about System.out.println shortcut in eclipse.
- 31 December
Java 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 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 December
How to Get Day from Date in Java
Learn about how to get day name of week from date in java