没有为jdbc找到合适的驱动程序:postgresql://192.168.1.8:5432/NexentaSearch

use*_*488 12 java linux postgresql jdbc driver

我写了以下java程序

import java.io.*;
import java.util.*;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.logging.Level;
import java.util.*;

public class Sample {
    public static void main (String[] args) throws IOException  {
                    int CountComputers;
            FileInputStream fstream = new FileInputStream(
                    "/export/hadoop-1.0.1/bin/countcomputers.txt");
            BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
            String result=br.readLine();
            CountComputers=Integer.parseInt(result);
            input.close();
            fstream.close();
            Connection con = null;
            Statement st = null;
                ResultSet rs = null;    
               String url = "jdbc:postgresql://192.168.1.8:5432/NexentaSearch";
                String user = "postgres";
                String password = "valter89";
            ArrayList<String> paths = new ArrayList<String>();
            try
            {
                con = DriverManager.getConnection(url, user, password);
                        st = con.createStatement();
                        rs = st.executeQuery("select path from tasks order by id");
                while (rs.next()) { paths.add(rs.getString(1)); };
                PrintWriter zzz = null;
                    try
                    {
                            zzz = new PrintWriter(new FileOutputStream("/export/hadoop-1.0.1/bin/readwaysfromdatabase.txt"));
                    }
                    catch(FileNotFoundException e)
                    {
                            System.out.println("Error");
                            System.exit(0);
                    }
                    for (int i=0; i<paths.size(); i++)
                {
                    zzz.println("paths[i]=" + paths.get(i) + "\n");
                    }
                    zzz.close();

            }
            catch (SQLException e) 
            {
                System.out.println("Connection Failed! Check output console");
                e.printStackTrace();
            }
        }
}
Run Code Online (Sandbox Code Playgroud)

我编译了这个程序并创建了jar文件

./javac -classpath /folder/postgresql-8.4-703.jdbc3.jar -d /Samplejavaprogram/classes /Samplejavaprogram/src/Sample.java
./jar -cvf /Samplejavaprogram/Sample.jar -C /Samplejavaprogram/classes/ .
Run Code Online (Sandbox Code Playgroud)

Jar有以下清单文件

Manifest-Version: 1.0
Created-By: 1.7.0_06 (Oracle Corporation)
Main-Class: Sample
Class-Path: /folder/postgresql-8.4-703.jdbc3.jar
Run Code Online (Sandbox Code Playgroud)

还包含文件/folder/postgresql-8.4-703.jdbc3.jar.我通过命令启动了Sample.jar

./java -jar -Djava.library.path=/opt/jdk1.7.0_06/lib /Samplejavaprogram/Sample.jar
Run Code Online (Sandbox Code Playgroud)

结果我收到了以下消息

Connection Failed! Check output console
java.sql.SQLException: No suitable driver found for jdbc:postgresql://192.168.1.8:5432/NexentaSearch
    at java.sql.DriverManager.getConnection(DriverManager.java:604)
    at java.sql.DriverManager.getConnection(DriverManager.java:221)
    at org.myorg.Sample.main(Sample.java:33)
Run Code Online (Sandbox Code Playgroud)

我从与地址为192.168.1.10主机发起的文件,并在主机192.168.1.8它正常履行.帮助消除错误.

Rei*_*eus 17

您正在使用JDBC 3驱动程序.JDBC 4驱动程序由DriverManagerJDBC 3驱动程序自动加载而不是.因此,您需要调用

Class.forName("org.postgresql.Driver");
Run Code Online (Sandbox Code Playgroud)

一旦进入你的应用程序,(在调用之前DriverManager#getConnection).


或者,您可以使用此处的JDBC 4 PostgreSQL驱动程序,该驱动程序不需要上述方法调用.