Core java
- 25 October
[Fixed] Unsupported Class File Major Version 61 in Java
1. Introduction Java developers often face the challenge of compatibility issues, such as the unsupported class file major version 61" error. This problem arises when a Java program, compiled with Java 17 (denoted by major version 61), is run on a Java version that’s older than Java 17. This guide is crafted to be beginner-friendly […]
- 05 October
Find Difference Between Two Instant in Java
In this post, we will see how to find difference between two Instant in Java. Ways to find difference between two Instant in Java There are multiple ways to find difference between two Instant in various time units such as Days, Hours, Minutes, Seconds etc. Using Instant’s until() method To find difference between two Instant, […]
- 05 October
Find Difference Between Two LocalDateTime in Java
In this post, we will see how to find difference between two LocalDateTime in Java. Ways to find difference between two LocalDateTime in Java There are multiple ways to find difference between two LocalDateTime in various time units such as Days, Months, Years etc. Using LocalDateTime’s until() method We can use LocalDateTime’s until() method to […]
- 05 October
Find Difference Between Two LocalDate in Java
In this post, we will see how to find difference between two LocalDate in Java. Ways to find difference between two LocalDate in Java There are multiple ways to find difference between two LocalDate in various time units such as Days, Months, Years etc. Using LocalDate’s until() method We can use LocalDate’s until() method to […]
- 27 September
Repeat String N times in Java
Introduction In this article, we will learn how to Repeat a given String N times in Java . This is a trick question common in JAVA interviews and the candidate’s evaluation is based on different approaches he/she provides for the problem. So we will take a deep dive into looking at various ways to solve […]
- 26 September
Get List of Weekday Names in Java
In this post, we will see how to get list of weekday names in Java. Using DateFormatSymbols’s getWeekdays() method We can use DateFormatSymbols's getWeekdays() to get list of weekday names in Java. It will provide complete weekday names like Sunday, Monday etc. [crayon-673ef6a4acea0235444893/] Output [crayon-673ef6a4acead215573995/] Using DateFormatSymbols’s getShortWeekdays() method [For short names] If you need […]
- 24 September
Display Negative Number in Parentheses in Java
In this post, we will see how to display negative number in Parentheses in Java. We can use pattern #,##0.00;(#,##0.00) with DecimalFormat‘s format() to display negative number in Parenthesis in Java. [crayon-673ef6a4ad4b8238441633/] Output [crayon-673ef6a4ad4eb213454458/] If you don’t need decimal places, you can change to pattern to: [crayon-673ef6a4ad4ee977538352/] Let’s understand meaning of pattern #,##0.00;(#,##0.00): First part […]
- 24 September
Increment for Loop by 2 in Java
In this post, we will see how to increment for loop by 2 in Java. There are several looping statements available in Java and one of them is for loop in java. There are three parts of for loop. Initialization Condition Increment or decrement [crayon-673ef6a4af0e8648714877/] Initialization: Initialization statement executes at start of loop only one […]
- 24 September
Get List of Month Names in Java
In this post, we will see how to get list of months name in Java. Using DateFormatSymbols’s getMonth() method We can use DateFormatSymbols's getMonth() to get list of months in Java. It will provide complete month names like January, February etc. [crayon-673ef6a4af38d822022759/] Output [crayon-673ef6a4af395021314518/] Using DateFormatSymbols’s getShortMonths() method [ For short names] If you need […]