gpt4 book ai didi

java - 如何将mongodb数据导出到远程系统

转载 作者:太空宇宙 更新时间:2023-11-04 14:33:19 24 4
gpt4 key购买 nike

我正在将 mongodb 数据导出到 *.csv 文件中。但问题是我想在远程系统中保存转储或 *.csv 文件。在尝试时我没有得到!

    Runtime runtime = Runtime.getRuntime();
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd");
Date date = new Date();
String xyz=dateFormat.format(date);
String query="mongoexport --host "+" "+ipAdders+" "+"-d SMPP -c UserMessages
--csv --fieldFile /root/Documents/UserMessagesFileds.txt -o"+" "+xyz+".csv";
try {
Process process=runtime.exec(query);
System.out.println(query);
System.out.println(xyz);
if( null!=process && process.waitFor() == 0 &&process.exitValue()== 0 ){
System.out.println("Command executed sucessfully");
}
else{

}
return true;
} catch (IOException e) {
e.printStackTrace();
return false;
}

此代码在我的系统中存储 *.csv 文件,但我希望将其存储在远程系统中,例如(192.168.0.139)。

最佳答案

您应该将 *.csv 文件转储到系统上,然后使用 Socket在计算机之间传输文件。

关于java - 如何将mongodb数据导出到远程系统,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25882728/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com