JDBC provides a standard interface for connecting to and interacting with relational databases in Java. It uses drivers specific to each database vendor to translate JDBC calls to calls native to that database. The key components of JDBC include the DriverManager for loading drivers, Connection for establishing a connection, Statement for executing SQL queries, and ResultSet for accessing the results.