import java.io.InputStreamReader; //@Service public class ExecCommandServerImp implements IExecCommandServer { @Override public void execCommand(String cmd){ try{ Runtime rt = Runtime.getRuntime(); //执行命令, 最后一个参数,可以使用new File("path")指定运行的命令的位置 Process proc = rt.exec(...
final static String user="test"; //服务器的账号 final static String password="test123"; //服务器的密码 /** * @Title: exectueShellCommand * @Description: 执行shell命令,返回得到的结果 * @param @param command 执行的shell命令 * @param @return shell命令的返回值 */ public static String exec...
final static String user="test"; //服务器的账号 final static String password="test123"; //服务器的密码 /** * @Title: exectueShellCommand * @Description: 执行shell命令,返回得到的结果 * @param @param command 执行的shell命令 * @param @return shell命令的返回值 */ public static String exec...