如何在java中发送pscp代码

时间:2015-08-26 11:14:30

标签: java pscp

我有一个问题我想在java程序中发送代码pscp我希望发送此代码root@1xx.2xx.3X.1x:/ usr / local / se / log c:/

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用Runtime类在Java程序中运行本机脚本:

class Test {
    public static void main(String[] args) {
        Runtime.getRuntime().exec("pscp.exe C:\xm root@1xx.2xx.3X.1x:/usr/local/se/log ");
    }
}