Creating a csv file in JavaWhen exporting data on the web, the file in the csv format is provided. The csv file seems to be…January 11, 2023 1 min
Differences between hashmap and linkedHashmap in JavaWhen using HashMap objects in the java.util package, there are times when you sort the key values…January 10, 2023 1 min
Process Interface Using Serializable in JavaLet's find out how to create a Java data object (model object) and make it binary and throw that…January 09, 2023 1 min
Static variables and static methods in JavaUsing the Static keyword in Java means that it is assigned to memory once and released when the…December 31, 2022 2 min
What is Optional in Java? Optional Concepts and Usage🌱Optional Concepts and Usage One of the most common exceptions in development is NPE…December 30, 2022 2 min
How to use Enum in JavaIn general, when defining constants, they are defined as public static final strings. However…December 29, 2022 1 min