0% found this document useful (0 votes)
15 views1 page

Java Part4 Advanced

Uploaded by

gunjan Sathawane
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

Java Part4 Advanced

Uploaded by

gunjan Sathawane
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Java Notes - Part 4: Advanced

Exception Handling
try { int x = 10/0; } catch(Exception e) { System.out.println(e); }
Multithreading
class MyThread extends Thread { public void run(){} }
File Handling
FileReader fr = new FileReader("file.txt");
Collections Framework
- List, Set, Map
Generics
ArrayList list = new ArrayList<>();
JDBC (Database Connectivity)
- Steps: Load driver → Establish connection → Execute query.
Java 8 Features
- Lambda expressions
- Streams API

You might also like