次のように、コンピュータサーバーのMySQLデータベースに正常に接続するJDBCを使用してJavaプログラムを作成しました。
try
{
// The newInstance() call is a work around for some
// broken Java implementations
Class.forName("com.mysql.jdbc.Driver").newInstance();
}
catch (Exception ex)
{
// handle the error
}
try
{
conn = DriverManager.getConnection(("jdbc:mysql://191.168.1.15:3306/databasename"), "username", "password");
// Do something with the Connection
}
catch (SQLException ex)
{
// handle any errors
System.out.println("SQLException: " + ex.getMessage());
System.out.println("SQLState: " + ex.getSQLState());
System.out.println("VendorError: " + ex.getErrorCode());
}
ただし、パスワードを把握したい人は、Javaデコンパイラーを使用すれば非常に簡単です。どうすれば、彼らがパスワードやユーザー名を見つけられないようにすることができますか?