In Java, you normally do not use DLLs directly. DLLs are Windows-specific native libraries. In Java, libraries are usually packaged as JAR (Java ARchive) files. There are thousands of open source Java libraries available on the web for almost anything that you'll ever need.
SQL injection can be prevented by PreparedStatement object in java so i need to know whether there is a library that can help me to do that
You don't need a library, you just need to use PreparedStatement and set the values that you want to put into your SQL statements through the set...() methods on the PreparedStatement instead of concatenating them into an SQL string yourself. The JDBC driver for your database will then automatically take care of escaping the values to prevent SQL injection attacks.