溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

postgresql數(shù)據(jù)庫怎么利用Java進(jìn)行連接

發(fā)布時間:2020-12-02 15:39:24 來源:億速云 閱讀:352 作者:Leah 欄目:編程語言

這篇文章給大家介紹postgresql數(shù)據(jù)庫怎么利用Java進(jìn)行連接,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1.下載驅(qū)動jar

2.導(dǎo)入jar包

新建lib文件夾,將下載的jar驅(qū)動包拖到文件夾中。

postgresql數(shù)據(jù)庫怎么利用Java進(jìn)行連接

將jar驅(qū)動包添加到Libraries

postgresql數(shù)據(jù)庫怎么利用Java進(jìn)行連接

postgresql數(shù)據(jù)庫怎么利用Java進(jìn)行連接

3.程序代碼如下:HelloWorld.java

package test;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class HelloWorld {
  public static void main(String []args) {
    Connection connection=null;
    Statement statement =null;
    try{
      String url="jdbc:postgresql://127.0.0.1:5432/postgis";
      String user="postgres";
      String password = "123456";
      Class.forName("org.postgresql.Driver");
      connection= DriverManager.getConnection(url, user, password);
      System.out.println("是否成功連接pg數(shù)據(jù)庫"+connection);
      String sql="select name from test";
      statement=connection.createStatement();
      ResultSet resultSet=statement.executeQuery(sql);
      while(resultSet.next()){
        String name=resultSet.getString(1);
        System.out.println(name);
      }
    }catch(Exception e){
      throw new RuntimeException(e);
    }finally{
      try{
        statement.close();
      }
      catch(SQLException e){
        e.printStackTrace();
        throw new RuntimeException(e);
      }finally{
        try{
          connection.close();
        }
        catch(SQLException e){
          e.printStackTrace();
          throw new RuntimeException(e);
        }
      }
    }
  }
}

運行結(jié)果:

postgresql數(shù)據(jù)庫怎么利用Java進(jìn)行連接

關(guān)于postgresql數(shù)據(jù)庫怎么利用Java進(jìn)行連接就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI