如何使用Java中的命令重新启动调制解调器
作者:互联网
嗨,我想用java中的命令提示符重启我的adsl调制解调器.但是当需要用户名时必须输入cmd即可停止.有什么问题
import java.io.IOException;
public class ExecuteShellComand
{
public static void main(String[] args) throws IOException
{
String tel = "telnet 192.168.1.1 23";
String user = "admin";
String pass = "admin";
String reboot = "reboot";
String command = "cmd /c start cmd.exe /c"+tel+"/c"+user+"/c"+pass+"/c"+reboot;
Process child = Runtime.getRuntime().exec(command);
}
}
解决方法:
您可能还需要在每个参数之间留一个空格.键入方式将向以下命令发送命令:
cmd /c start cmd.exe /ctelnet 192.168.1.1 23/cadmin/cadmin/creboot
添加一个System.out.println(command);创建字符串后,查看字符串中的实际内容.
将代码编辑为以下内容:
String command = "cmd /c start cmd.exe /c "+tel+" /c "+user+" /c "+pass+" /c "+reboot;
System.out.println(command);
标签:command-prompt,java 来源: https://codeday.me/bug/20191028/1952288.html