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.
我需要将一些 .class 文件复制到远程服务器并使用 ANT 脚本执行主类文件。我可以使用 SCP ant 目标复制文件,但我被困在执行哪个任务以在远程服务器上运行主类。主类也接受几个参数来执行。任何人都可以提供有关如何实现相同目标的任何指示。
你试过SSHEXEC吗?
<sshexec host="somehost" username="dude" password="yo" command="java YourClass args"/>
远程服务器上需要安装 JRE。