1.下载PostgreSQL JDBC驱动:

http://jdbc.postgresql.org/download.html

2. 新建一个java项目,导入下载的jar包Add External JARs

3. 连接代码如下:

import java.sql.*;
import java.io.*;
import java.util.StringTokenizer;
import java.util.Properties;
import java.util.Random; /**
* Class <b>DBWrapper</b> contains
* wrapper routines for using JDBC
* to access the database.
*
* @author luwei
* @version 1.0
*/
public class DBWrapper
{ private static int CONNECTION_RETRIES = 10;
private static int QUERY_RETRIES = 10; private String dbUrl;
private String username;
private String password;
private String jdbcClassName;
private Connection dbCon; private boolean hasError = false;
private String errorString = null;
private static DBWrapper myInstance = null; /**
* DBWrapper constructor
*/
public DBWrapper() {} /**
* DBWrapper conscrutor
* @param inUrl String url of database
* @param inJdbcClassName String containing name of jdbc driver
* @param inUserName String containing database username
* @param inPassWord String containing database password
*/ public DBWrapper( String inUrl, String inJdbcClassName, String inUserName, String inPassWord )
throws Exception {
dbUrl = inUrl;
jdbcClassName = inJdbcClassName;
username = inUserName;
password = inPassWord;
connect();
} /**
* connectAsDefaultCteLibrary()
* Create a connection to the CTE library using the default connection parameters.
* @return void
*/
public void connectAsDefaultDatabase()
throws Exception {
myInstance.connect("jdbc:postgresql://localhost:5432/postgres",
"org.postgresql.Driver", "postgres", "741613551"); } /**
* closeConnections closes any currently open connections
* @return void
*/
private void closeConnections()
throws Exception {
if (dbCon!=null) {
dbCon.close();
}
} /**
* DBWrapper Instance()
* Get a singleton instance of the DBWrapper object.
* @return DBWrapper
*/
public static DBWrapper Instance()
throws Exception {
if (myInstance == null) {
myInstance = new DBWrapper();
myInstance.connectAsDefaultDatabase();
}
return myInstance;
} /**
* boolean connect()
* Connect to a database using the parameters supplied in the constructor.
* @return boolean
*/
private boolean connect()
throws Exception { boolean opened = false; DriverManager.registerDriver(new org.postgresql.Driver());
// Try to open a connection the database.
int retry = 0;
while(retry++ < CONNECTION_RETRIES){
Class.forName(jdbcClassName);
dbCon = DriverManager.getConnection(dbUrl,username,password);
break;
}
if(retry < CONNECTION_RETRIES)opened=true;
return opened;
} /**
* boolean connect()
* Connect to a JDBC datasource without using the parameters supplied in the constructor.
* @param inUrl String url of database
* @param inJdbcClassName String containing name of jdbc driver
* @param inUserName String containing database username
* @param inPassWord String containing database password
* @return boolean
*/
public boolean connect( String inUrl, String inJdbcClassName, String inUserName, String inPassWord )
throws Exception {
dbUrl = inUrl;
jdbcClassName = inJdbcClassName;
username = inUserName;
password = inPassWord;
closeConnections(); return connect();
} /**
* ResultSet runQuery()
* Executes a query and returns a resultset.
*
* @param String containing a SQL statement
* @return ResultSet
*/
public ResultSet runQuery( String sqlQuery )
throws Exception {
Statement statement=dbCon.createStatement();
ResultSet resultSet=statement.executeQuery(sqlQuery);
return resultSet;
} /**
* boolean runUpdate()
* Executes an update and returns true of successfully executed.
*
* @param String containing a SQL statement
* @return boolean
*/
public boolean runUpdate( String sqlQuery )
throws Exception {
Statement ps=dbCon.createStatement();
boolean wasExecuted = false;
int retry = 0;
while(retry++ < CONNECTION_RETRIES){
ps.executeUpdate(sqlQuery);
break;
}
if(retry < CONNECTION_RETRIES)wasExecuted=true; return wasExecuted;
} /**
* ResultSet runChainedQuery()
* Executes a chained mode transaction query.
*
* @param <b>String</b> containing a SQL statement
* @param <b>String</b> containing the isolation level to run the transaction.
* @return ResultSet
*/
public ResultSet runChainedQuery( String sqlQuery, String isolationLevel )
throws Exception { int retry = 0; //Create the resultset and statement object.
ResultSet resultSet = null;
Statement dbStatement = null;
// Connect to the database.
dbStatement = dbCon.createStatement();
// Retry the query until complete or timeout.
while (retry++ < QUERY_RETRIES) {
// Begin a transaction.
dbStatement.executeUpdate( "Begin Transaction" );
// Set the isolation level.
dbStatement.executeUpdate( new String( "Set Transaction Isolation level " + isolationLevel ) );
// Execute the query.
resultSet = dbStatement.executeQuery( sqlQuery );
// Commit the transaction.
dbStatement.executeUpdate( "commit" );
// Close the connection.
dbStatement.close();
break;
}
return resultSet;
} /**
* boolean runChainedUpdate()
* Executes a chained mode transaction query.
*
* @param String[] containing a series of SQL statments
* @param String containing the isolation level to run the transaction.
* @return boolean
*/
public boolean runChainedUpdate( String [] sqlQuery, String isolationLevel )
throws Exception {
int retry = 0; // Create the statement object.
Statement dbStatement = null;
boolean wasExecuted = false;
// Connect to the database.
dbStatement = dbCon.createStatement(); while (retry++ < QUERY_RETRIES) {
// Begin a new transaction.
try {
dbStatement.executeUpdate( "Begin Transaction" );
// Set the isolation level.
dbStatement.executeUpdate( new String( "Set Transaction Isolation level " + isolationLevel ) );
// For each sql statement, perform the update.
for( int i=0; i<sqlQuery.length; i++ ) {
dbStatement.executeUpdate( sqlQuery[i] );
}
// Commit the transaction and close.
dbStatement.executeUpdate( "commit" );
dbStatement.close();
wasExecuted = true;
} catch (Exception e) {
errorString = new String( "Error executing: " + sqlQuery + "\nCause: " + e.toString() );
hasError = true;
// Rollback if an error has occured.
dbStatement.executeUpdate( "rollback" );
dbStatement.close();
}
}
return wasExecuted;
}
}

4. 测试代码

import java.sql.*;

public class DBConnectionTest {
public static void main(String[] args) {
/*
* if(args.length < 3){
* System.out.println("Syntax:DBConnection [url][username][password]");
* //url = jdbc:postgresql:database or
* jdbc:postgresql://host:port/database System.exit(-1); }
*/ String url = "jdbc:postgresql://localhost:5432/postgres";
String username = "postgres";
String password = "741613551";
String sql = "select sName from student";
String s; try {
System.out.println("Step 01: Registering JDBC Driver"); /* There are three ways to registe driver. */
// write your code here for Registering JDBC Driver
// 先注册JDBC驱动 org.postgresql.Driver
Class.forName("org.postgresql.Driver");
System.out.println("Step 02: Establishing connection to: \n\t"
+ url); // write your code here to get a connection
// url = jdbc:postgresql:database or
// jdbc:postgresql://host:port/database
Connection conn = DriverManager.getConnection(url, username,
password);
System.out.println("Step 03: Creating SQL statement."); // write your code here to create a SQL statement
Statement state = conn.createStatement();
System.out.println("Step 04: Executing SQL statement."); // write your code here to execute your SQL statement and recieve
// the result
ResultSet resultSet = state.executeQuery(sql);
System.out.println("Step 05: Printing result."); // write your code here to print the result
while (resultSet.next()) {
System.out.println(resultSet.getString("sName"));
}
System.out.println("Step 06: Closing JDBC objects."); // write your code here to close all JDBC objects. resultSet.close();
state.close();
conn.close();
System.out.println("End.");
} catch (Exception e) {
System.out.println(e);
}
}
}

5. JDBC教程:http://www.yiibai.com/jdbc/jdbc-introduction.html

postgreSQL连接 java接口的更多相关文章

  1. java接口调用——webservice就是一个RPC而已

    很多新手一听到接口就蒙逼,不知道接口是什么!其实接口就是RPC,通过远程访问别的程序提供的方法,然后获得该方法执行的接口,而不需要在本地执行该方法.就是本地方法调用的升级版而已,我明天会上一篇如何通过 ...

  2. python面向对象进阶 反射 单例模式 以及python实现类似java接口功能

    本篇将详细介绍Python 类的成员.成员修饰符.类的特殊成员. 类的成员 类的成员可以分为三大类:字段.方法和特性. 注:所有成员中,只有普通字段的内容保存对象中,即:根据此类创建了多少对象,在内存 ...

  3. OpenCV4Android开发之旅(一)----OpenCV2.4简介及 app通过Java接口调用OpenCV的示例

    转自:  http://blog.csdn.net/yanzi1225627/article/details/16917961 开发环境:windows+ADT Bundle+CDT+OpenCV-2 ...

  4. 十分钟搭建redis单机版 & java接口调用

    本次单机版redis服务器搭建采用的包为redis-3.0.0.tar.gz,主要是记录下安装的心得,不喜勿喷! 一.搭建redis服务器单机版 1.上传redis-3.0.0.tar.gz到服务器上 ...

  5. Apache Solr 初级教程(介绍、安装部署、Java接口、中文分词)

    Python爬虫视频教程零基础小白到scrapy爬虫高手-轻松入门 https://item.taobao.com/item.htm?spm=a1z38n.10677092.0.0.482434a6E ...

  6. 使用swig将C/C++代码转为JAVA接口(Windows平台)

    小弟一直没用过Linux. 平时的码也只是在WINDOW上用SWIG或CYGWIN进行编译. 下面的例子,先从网上找来一个.c文件. example.c /* File : example.c */ ...

  7. Java-Runoob-面向对象:Java 接口

    ylbtech-Java-Runoob-面向对象:Java 接口 1.返回顶部 1. Java 接口 接口(英文:Interface),在JAVA编程语言中是一个抽象类型,是抽象方法的集合,接口通常以 ...

  8. jmeter使用BeanShell Sampler测试自己写的java接口(一)

    上次直接使用jmeter里面的FTPsampler没有连接成功 现在想着自己写java代码,通过jmeter进行调用进行连接测试实现并发 代码引文: http://www.cnblogs.com/ch ...

  9. Java接口对Hadoop集群的操作

    Java接口对Hadoop集群的操作 首先要有一个配置好的Hadoop集群 这里是我在SSM框架搭建的项目的测试类中实现的 一.windows下配置环境变量 下载文件并解压到C盘或者其他目录. 链接: ...

随机推荐

  1. SNMP MIB库

    -- mib文件的开头指定文件名,并且使用BEGIN开始,文件的最后用END结束 -- IMPORTS就相当与c语言中的include,包含需要使用的一些数据类型 -- 通过FROM指定引用的来源 M ...

  2. 第三百四十九节,Python分布式爬虫打造搜索引擎Scrapy精讲—cookie禁用、自动限速、自定义spider的settings,对抗反爬机制

    第三百四十九节,Python分布式爬虫打造搜索引擎Scrapy精讲—cookie禁用.自动限速.自定义spider的settings,对抗反爬机制 cookie禁用 就是在Scrapy的配置文件set ...

  3. html5视频播放解决方案

    关键词:html5  nativeapp webapp mp4 H.264 html5没学习之前总觉的很神秘.近期通过学习和研究html5有点成果,特总结分享给大家.众所周知应用开发分两种:一是原生的 ...

  4. 从SQL查询分析器中读取EXCEL中的内容

    很早以前就用sql查询分析器来操作过EXCEL文件了. 由于对于excel公式并不是很了解,所以很多时候处理excel中的内容,常常是用sql语句来处理的.[什么样的人有什么样的办法吧 :)] 今又要 ...

  5. Unity--------------------万向锁的概念

    万向锁 一直困惑我很久....原因出在这里,我以为欧拉角旋转是以模型坐标(齐次坐标系)为旋转轴.问题就来了,无论旋转那个轴,其它两个轴也会相应的变化,下面看图: 根据上面的说明两个旋转面(圆圈)怎么会 ...

  6. 参考论坛:Mali kernel driver TX011-SW-99002-r5p1-00rel0 for firefly

    最近手头有一块firefly_rk3288_reload的开发板,想实现在linux 下用openGL ES来做视频显示. 找到opengGL相关移植,参考论坛(http://bbs.t-firefl ...

  7. python_smtplib

    import smtplib smtpserver = 'smtp.qq.com' fromaddr = 'fromaddr@qq.com' toaddrs = 'toaddr@qq.com' msg ...

  8. wapp HTTP Error 404. The requested resource is not found.

    原因: 本地80端口被占用,需要修改WAMP的默认端口 修改设置: 找到 bin/apache/apache***/conf/httpd.conf文件 将文件中的80修改为8088 修改这两个地方端口 ...

  9. mothur 计算稀释性曲线

    在微生物分析中,经常使用稀释性曲线来评估测序量是否足够:可以使用mothur 这个软件来完成 rarefaction.single 命令用来做稀释性曲线,既可以对单个样本单独分析,也可以一次对多个样本 ...

  10. Ironic 安装和配置详解

    转自:http://amar266.blogspot.com/2014/12/ironic-installation-and-configuration.html 1.Install Openstac ...