This way the code doesn't need to have the driver class in the classpath during compile time. You don't want to have countless different JDBC drivers of the past, current and the future in the compile time classpath to make your JDBC code compatible with all of those databases. You don't want to recompile the code everytime you upgrade/replace the driver or DB. All you need is the driver class name in a String which can be configured externally (usually a properties or xml file).
In other words: portability and reusability.
If it is for your own private use, do whatever you want. But if you did it in a library which is to be distributed in public (e.g. an ORM or some database management tool), it won't become popular because the enduser has to grab the source code and change/recompile it everytime when it didn't support their database.