how to copy a data from file to PostgreSQL using JDBC?

前端 未结 2 1173
陌清茗
陌清茗 2020-11-27 18:03

I want to copy data from file to PostgreSQL DB using JDBC. I was using JDBC statement object to copy the file into DB. It is very slow.

I came to know that we can a

2条回答
  •  臣服心动
    2020-11-27 18:32

    This works...

    import java.io.FileReader;
    import java.sql.Connection;
    import java.sql.DriverManager;
    
    import org.postgresql.copy.CopyManager;
    import org.postgresql.core.BaseConnection;
    
    public class PgSqlJdbcCopyStreamsExample {
    
        public static void main(String[] args) throws Exception {
    
            if(args.length!=4) {
                System.out.println("Please specify database URL, user, password and file on the command line.");
                System.out.println("Like this: jdbc:postgresql://localhost:5432/test test password file");
            } else {
    
                System.err.println("Loading driver");
                Class.forName("org.postgresql.Driver");
    
                System.err.println("Connecting to " + args[0]);
                Connection con = DriverManager.getConnection(args[0],args[1],args[2]);
    
                System.err.println("Copying text data rows from stdin");
    
                CopyManager copyManager = new CopyManager((BaseConnection) con);
    
                FileReader fileReader = new FileReader(args[3]);
                copyManager.copyIn("COPY t FROM STDIN", fileReader );
    
                System.err.println("Done.");
            }
        }
    }
    

提交回复
热议问题