इसे आजमाएं:
public static void main(String[] args) throws Exception {
Class.forName("com.mysql.jdbc.Driver");
}
मुद्दा यह है कि Class.forName(String)
एक चेक अपवाद फेंकता है। चेक किए गए अपवाद के साथ, आप या तो कर सकते हैं:
- अपवाद पकड़ें।
- घोषणा करें कि आपका तरीका अपवाद फेंकता है। (जो मैंने ऊपर सुझाया है)।
यहाँ अपवाद को पकड़ने का एक उदाहरण दिया गया है:
public static void main(String[] args) throws Exception {
try {
Class.forName("com.mysql.jdbc.Driver");
} catch(ClassNotFoundException e) {
//do some exception handling
}
}