如何用java连接到PostgreSQL?

时间:2017-01-24 12:10:35

标签: postgresql

我想将PostgreSQL与Java结合使用。我尝试使用普通的Postgres连接,但我无法建立连接。

我收到以下错误:

public Connection getConnection() {
    try {
        Class.forName("org.postgresql.Driver");
        connection = null;
        connection = DriverManager.getConnection(
           "jdbc:postgresql://host:5433/postgres","username", "password");
        //"postgres://user_name:password@159.8.128.86:5433/name");
    }
    catch(Exception e) {
        System.out.println(e);

    }
    return connection;
    }
  

线程“main”中的异常org.postgresql.util.PSQLException:连接尝试失败。       显示java.lang.NullPointerException

     

在ConnectionPostgres.getConnection(ConnectionPostgres.java:25)

     

在Client.main(Client.java:7)

0 个答案:

没有答案