@SPD
!Java
Hi There, Suraj here
Welcome to the Learn Java repository!. This repository contains my Java learning notes. You can explore and clone this repo and not to wory about Copyright because knowledge is always an open source.
- Java Basics and OOPS
- String
- Regex
- Exception Handling
- Inner Class
- IO Operations
- Multi Threading
- Java8 features
- Certificate & MTLS (JWKs and Certs)
Java is a versatile and powerful programming language used for building a wide range of applications. This repository provides a comprehensive guide to learning Java, including tutorials, examples, and exercises.
Follow these instructions to get a copy of the project up and running on your local machine for development and learning purposes.
- Java Development Kit (JDK) 8 or higher
- An IDE or text editor (e.g., IntelliJ IDEA, Eclipse, VS Code)
- Clone the repository:
git clone https://github.com/your-username/learnJava.git
- Navigate to the project directory:
cd learnJava
Explore the various folders and files to find tutorials and examples on different Java topics. Each topic is organized into its own directory with relevant code and explanations.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}