Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java プログラムでそのようなコード pscp を送信したい問題があります。このコードを送信したい root@1xx.2xx.3X.1x:/usr/local/se/log c:/
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 "); } }