如何在Windows上使用Java将mysql dump文件导入MySQL服务器(7)

达齐托

我正在尝试使用Java导入使用mysqldump.exe文件创建的mysql dump。创建转储文件没有问题,但是问题是当我尝试导入它时,它总是失败。

这是我的方法代码:

public boolean restoreDatabase(String path, String mySqlPath)
    {
        List<String> args = new ArrayList<String>();
        mySqlPath = "C:/wamp/bin/mysql/mysql5.5.24/bin/mysql.exe";
        args.add(mySqlPath);

        // Comands
        args.add("-u ");
        args.add("root");
        args.add("--password=123");
        args.add("testingimport");
        args.add("<");
        path = "C:/Users/Kasper/Documents/testingimport.sql";
        args.add(path);


        try{
            ProcessBuilder pb = new ProcessBuilder(args);
            pb.redirectError();
            Process p = pb.start();
            InputStream is = p.getInputStream();

            int in = -1;
            while((in = is.read()) != -1)
            {
                System.out.print(""+(char) in);
            }

            int proccessCompleted = p.waitFor();

            if(proccessCompleted == 0)
            {
                System.out.println("Dump done!");
                return true;
            }
            else
            {
                System.out.println("Error doing dump!");
                return false;
            }
        }
        catch(IOException | InterruptedException ex)
        {
            System.out.println("Exception exportDB -> " + ex.getMessage() + "|" + ex.getLocalizedMessage());
        }
        return false;
    }

这是完整的输出代码:

Args: [C:\wamp\bin\mysql\mysql5.5.24\bin\mysql.exe, -u , root, --password=123, testingimport, <, C:/Users/Kasper/Documents/testingimport.sql]
C:\wamp\bin\mysql\mysql5.5.24\bin\mysql.exe  Ver 14.14 Distrib 5.5.24, for Win64 (x86)
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Usage: C:\wamp\bin\mysql\mysql5.5.24\bin\mysql.exe [OPTIONS] [database]
  -?, --help          Display this help and exit.
  -I, --help          Synonym for -?
  --auto-rehash       Enable automatic rehashing. One doesn't need to use
                      'rehash' to get table and field completion, but startup
                      and reconnecting may take a longer time. Disable with
                      --disable-auto-rehash.
                      (Defaults to on; use --skip-auto-rehash to disable.)
  -A, --no-auto-rehash 
                      No automatic rehashing. One has to use 'rehash' to get
                      table and field completion. This gives a quicker start of
                      mysql and disables rehashing on reconnect.
  --auto-vertical-output 
                      Automatically switch to vertical output mode if the
                      result is wider than the terminal width.
  -B, --batch         Don't use history file. Disable interactive behavior.
                      (Enables --silent.)
  --character-sets-dir=name 
                      Directory for character set files.
  --column-type-info  Display column type information.
  -c, --comments      Preserve comments. Send comments to the server. The
                      default is --skip-comments (discard comments), enable
                      with --comments.
  -C, --compress      Use compression in server/client protocol.
  -#, --debug[=#]     This is a non-debug version. Catch this and exit.
  --debug-check       Check memory and open file usage at exit.
  -T, --debug-info    Print some debug info at exit.
  -D, --database=name Database to use.
  --default-character-set=name 
                      Set the default character set.
  --delimiter=name    Delimiter to be used.
  -e, --execute=name  Execute command and quit. (Disables --force and history
                      file.)
  -E, --vertical      Print the output of a query (rows) vertically.
  -f, --force         Continue even if we get an SQL error.
  -G, --named-commands 
                      Enable named commands. Named commands mean this program's
                      internal commands; see mysql> help . When enabled, the
                      named commands can be used from any line of the query,
                      otherwise only from the first line, before an enter.
                      Disable with --disable-named-commands. This option is
                      disabled by default.
  -i, --ignore-spaces Ignore space after function names.
  --init-command=name SQL Command to execute when connecting to MySQL server.
                      Will automatically be re-executed when reconnecting.
  --local-infile      Enable/disable LOAD DATA LOCAL INFILE.
  -b, --no-beep       Turn off beep on error.
  -h, --host=name     Connect to host.
  -H, --html          Produce HTML output.
  -X, --xml           Produce XML output.
  --line-numbers      Write line numbers for errors.
                      (Defaults to on; use --skip-line-numbers to disable.)
  -L, --skip-line-numbers 
                      Don't write line number for errors.
  -n, --unbuffered    Flush buffer after each query.
  --column-names      Write column names in results.
                      (Defaults to on; use --skip-column-names to disable.)
  -N, --skip-column-names 
                      Don't write column names in results.
  --sigint-ignore     Ignore SIGINT (CTRL-C).
  -o, --one-database  Ignore statements except those that occur while the
                      default database is the one named at the command line.
  -p, --password[=name] 
                      Password to use when connecting to server. If password is
                      not given it's asked from the tty.
  -W, --pipe          Use named pipes to connect to server.
  -P, --port=#        Port number to use for connection or 0 for default to, in
                      order of preference, my.cnf, $MYSQL_TCP_PORT,
                      /etc/services, built-in default (3306).
  --prompt=name       Set the mysql prompt to this value.
  --protocol=name     The protocol to use for connection (tcp, socket, pipe,
                      memory).
  -q, --quick         Don't cache result, print it row by row. This may slow
                      down the server if the output is suspended. Doesn't use
                      history file.
  -r, --raw           Write fields without conversion. Used with --batch.
  --reconnect         Reconnect if the connection is lost. Disable with
                      --disable-reconnect. This option is enabled by default.
                      (Defaults to on; use --skip-reconnect to disable.)
  -s, --silent        Be more silent. Print results with a tab as separator,
                      each row on new line.
  --shared-memory-base-name=name 
                      Base name of shared memory.
  -S, --socket=name   The socket file to use for connection.
  --ssl               Enable SSL for connection (automatically enabled with
                      other flags).
  --ssl-ca=name       CA file in PEM format (check OpenSSL docs, implies
                      --ssl).
  --ssl-capath=name   CA directory (check OpenSSL docs, implies --ssl).
  --ssl-cert=name     X509 cert in PEM format (implies --ssl).
  --ssl-cipher=name   SSL cipher to use (implies --ssl).
  --ssl-key=name      X509 key in PEM format (implies --ssl).
  --ssl-verify-server-cert 
                      Verify server's "Common Name" in its cert against
                      hostname used when connecting. This option is disabled by
                      default.
  -t, --table         Output in table format.
  --tee=name          Append everything into outfile. See interactive help (\h)
                      also. Does not work in batch mode. Disable with
                      --disable-tee. This option is disabled by default.
  -u, --user=name     User for login if not current user.
  -U, --safe-updates  Only allow UPDATE and DELETE that uses keys.
  -U, --i-am-a-dummy  Synonym for option --safe-updates, -U.
  -v, --verbose       Write more. (-v -v -v gives the table output format).
  -V, --version       Output version information and exit.
  -w, --wait          Wait and retry if connection is down.
  --connect-timeout=# Number of seconds before connection timeout.
  --max-allowed-packet=# 
                      The maximum packet length to send to or receive from
                      server.
  --net-buffer-length=# 
                      The buffer size for TCP/IP and socket communication.
  --select-limit=#    Automatic limit for SELECT when using --safe-updates.
  --max-join-size=#   Automatic limit for rows in a join when using
                      --safe-updates.
  --secure-auth       Refuse client connecting to server if it uses old
                      (pre-4.1.1) protocol.
  --server-arg=name   Send embedded server this as a parameter.
  --show-warnings     Show warnings after every statement.
  --plugin-dir=name   Directory for client-side plugins.
  --default-auth=name Default authentication client-side plugin to use.

Default options are read from the following files in the given order:
C:\Windows\my.ini C:\Windows\my.cnf C:\my.ini C:\my.cnf C:\wamp\bin\mysql\mysql5.5.24\my.ini C:\wamp\bin\mysql\mysql5.5.24\my.cnf 
The following groups are read: mysql client
The following options may be given as the first argument:
--print-defaults        Print the program argument list and exit.
--no-defaults           Don't read default options from any option file.
--defaults-file=#       Only read default options from the given file #.
--defaults-extra-file=# Read this file after the global files are read.

Variables (--variable-name=value)
and boolean options {FALSE|TRUE}  Value (after reading options)
--------------------------------- ----------------------------------------
auto-rehash                       FALSE
auto-vertical-output              FALSE
character-sets-dir                (No default value)
column-type-info                  FALSE
comments                          FALSE
compress                          FALSE
debug-check                       FALSE
debug-info                        FALSE
database                          (No default value)
default-character-set             auto
delimiter                         ;
vertical                          FALSE
force                             FALSE
named-commands                    FALSE
ignore-spaces                     FALSE
init-command                      (No default value)
local-infile                      FALSE
no-beep                           FALSE
host                              (No default value)
html                              FALSE
xml                               FALSE
line-numbers                      TRUE
unbuffered                        FALSE
column-names                      TRUE
sigint-ignore                     FALSE
port                              3306
prompt                            mysql> 
quick                             FALSE
raw                               FALSE
reconnect                         FALSE
shared-memory-base-name           (No default value)
socket                            /tmp/mysql.sock
ssl                               FALSE
ssl-ca                            (No default value)
ssl-capath                        (No default value)
ssl-cert                          (No default value)
ssl-cipher                        (No default value)
ssl-key                           (No default value)
ssl-verify-server-cert            FALSE
table                             FALSE
user                               
safe-updates                      FALSE
i-am-a-dummy                      FALSE
connect-timeout                   0
max-allowed-packet                16777216
net-buffer-length                 16384
select-limit                      1000
max-join-size                     1000000
secure-auth                       FALSE
show-warnings                     FALSE
plugin-dir                        (No default value)
default-auth                      (No default value)
Error doing dump!

谁能发现问题出在哪里?我花了很多时间试图找出问题所在。该命令在Windows命令行上可以正常运行,但是当我将其移至Java代码时,此命令将不起作用,这使我丧命……如果有帮助,我正在使用Windows 7和Java JDBC。

编辑:根据mrhobo的建议进行编码

public boolean restoreDatabase(String path, String mySqlPath) throws FileNotFoundException, IOException, InterruptedException
{
    List<String> args = new ArrayList<>();
    mySqlPath = "C:/wamp/bin/mysql/mysql5.5.24/bin/mysql.exe";

    args.add(mySqlPath);

    // Comands
    args.add("-u");
    args.add("root");
    args.add("--password=123");
    args.add("testingimport");

    System.out.println("Args: "+args.toString());

    try{
        ProcessBuilder pb = new ProcessBuilder(args);
        pb.redirectError();
        Process p = pb.start();

        path = "C:/Users/Kasper/Documents/testingimport.sql";
        InputStream fileInputStream = new FileInputStream(new File(path));
        byte[] b = new byte[4096];

        while(fileInputStream.read(b) != -1) {
            p.getOutputStream().write(b);
        }

        p.getOutputStream().close(); // don't forget to close!
        InputStream is = p.getInputStream();

        int in = -1;
        while((in = is.read()) != -1)
        {
            System.out.print(""+(char) in);
        }

        int proccessCompleted = p.waitFor();

        if(proccessCompleted == 0)
        {
            System.out.println("Dump done!");
            return true;
        }
        else
        {
            System.out.println("Error doing dump!");
            return false;
        }
    }
    catch(IOException | InterruptedException ex)
    {
        System.out.println("Exception exportDB -> " + ex.getMessage() + "|" + ex.getLocalizedMessage());
    }
    return false;
}

这是输出:

Args: [C:/wamp/bin/mysql/mysql5.5.24/bin/mysql.exe, -u, root, --password=123, testingimport]
Error doing dump!
洛德维克Bogaards

该代码肯定无法工作的原因之一是因为:

    args.add("<");
    path = "C:/Users/Kasper/Documents/testingimport.sql";
    args.add(path);

Windows命令行解释器将该<字符理解为特殊字符,该特殊字符指示文件的内容需要写入stdin。它不是进程启动的一部分,而是命令行解释器的一部分。以编程方式启动流程,您需要创建自己的输入,输出和错误流控件。这是操作系统的工作方式(请参见win32 CreateProcess)。在Java中,进程通过进程的输出流获取其stdin。因此,为了使它起作用,请删除上面的行,并将其添加到pb.start()之后:

path = "C:/Users/Kasper/Documents/testingimport.sql";
InputStream fileInputStream = new FileInputStream(new File(path));
byte[] b = new byte[4096];
while(fileInputStream.read(b) != -1) {
    p.getOutputStream().write(b);
}
process.getOutputStream().close(); // don't forget to close!

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

如何将dump.rdb文件导入到Redis本地服务器

来自分类Dev

使用mysqlimport将csv文件导入mysql远程服务器

来自分类Dev

如何在Windows上启动MySQL服务器?

来自分类Dev

Mysql错误:在linux服务器上导入sql文件时出现ASCII'\ 0'

来自分类Dev

Mysql错误:在linux服务器上导入sql文件时出现ASCII'\ 0'

来自分类Dev

如何使用PuTTY将sql dump插入到远程mysql服务器中?

来自分类Dev

如何在Windows上使用快捷方式启动MySql服务器?

来自分类Dev

在PHP服务器上导入SQLLite文件

来自分类Dev

在PHP服务器上导入SQLLite文件

来自分类Dev

将ldif文件导入OpenLDAP服务器

来自分类Dev

将 JSON 文件导入 MS SQL 服务器

来自分类Dev

将csv文件导入mysql服务器,但是只有第一行正在插入并且输入错误

来自分类Dev

如何在Windows 7上设置SMTP服务器

来自分类Dev

如何在Windows 7上设置SMTP服务器

来自分类Dev

如何在服务器上从PHP中的MySQL Query保存CSV文件

来自分类Dev

更改MySQL服务器的XAMPP Windows 7端口

来自分类Dev

如何在XAMPP服务器上使用php将MySQL数据库连接到html页面?

来自分类Dev

如何在Linux上启动MySQL服务器?

来自分类Dev

使用`nohup`导入Debian服务器上的MySQL转储

来自分类Dev

使用Java将CSV文件加载到MySQL服务器

来自分类Dev

如何在phpmyadmin中导入5 GB MySQL Dump文件

来自分类Dev

将MySQL转储导入R(不需要MySQL服务器)

来自分类Dev

如何在Ubuntu服务器上完全关闭MySQL服务器

来自分类Dev

如何使用sqoop将mySql服务器中的JSON字段数据导入到Hive表中

来自分类Dev

如何在Elastic Beanstalk AWS上使用MySQL托管节点js / express服务器

来自分类Dev

JBoss AS 7和MySQL-无法启动服务器

来自分类Dev

MySQL服务器已在Drupal 7中消失

来自分类Dev

如何在windows中使用cmd启动和停止mysql服务器

来自分类Dev

如何在服务器目录联系表7上保留上载的文件或附件

Related 相关文章

  1. 1

    如何将dump.rdb文件导入到Redis本地服务器

  2. 2

    使用mysqlimport将csv文件导入mysql远程服务器

  3. 3

    如何在Windows上启动MySQL服务器?

  4. 4

    Mysql错误:在linux服务器上导入sql文件时出现ASCII'\ 0'

  5. 5

    Mysql错误:在linux服务器上导入sql文件时出现ASCII'\ 0'

  6. 6

    如何使用PuTTY将sql dump插入到远程mysql服务器中?

  7. 7

    如何在Windows上使用快捷方式启动MySql服务器?

  8. 8

    在PHP服务器上导入SQLLite文件

  9. 9

    在PHP服务器上导入SQLLite文件

  10. 10

    将ldif文件导入OpenLDAP服务器

  11. 11

    将 JSON 文件导入 MS SQL 服务器

  12. 12

    将csv文件导入mysql服务器,但是只有第一行正在插入并且输入错误

  13. 13

    如何在Windows 7上设置SMTP服务器

  14. 14

    如何在Windows 7上设置SMTP服务器

  15. 15

    如何在服务器上从PHP中的MySQL Query保存CSV文件

  16. 16

    更改MySQL服务器的XAMPP Windows 7端口

  17. 17

    如何在XAMPP服务器上使用php将MySQL数据库连接到html页面?

  18. 18

    如何在Linux上启动MySQL服务器?

  19. 19

    使用`nohup`导入Debian服务器上的MySQL转储

  20. 20

    使用Java将CSV文件加载到MySQL服务器

  21. 21

    如何在phpmyadmin中导入5 GB MySQL Dump文件

  22. 22

    将MySQL转储导入R(不需要MySQL服务器)

  23. 23

    如何在Ubuntu服务器上完全关闭MySQL服务器

  24. 24

    如何使用sqoop将mySql服务器中的JSON字段数据导入到Hive表中

  25. 25

    如何在Elastic Beanstalk AWS上使用MySQL托管节点js / express服务器

  26. 26

    JBoss AS 7和MySQL-无法启动服务器

  27. 27

    MySQL服务器已在Drupal 7中消失

  28. 28

    如何在windows中使用cmd启动和停止mysql服务器

  29. 29

    如何在服务器目录联系表7上保留上载的文件或附件

热门标签

归档