当前位置: 技术问答>java相关
高分求助,jsp中能否实现调用服务器端exe命令(或bat命令),如何能实现
来源: 互联网 发布时间:2017-04-21
本文导语: 同上 | 这有一个小例子,把他的代码写在jsp画面里就可以了,把E:/MYSELF/SENDMSG/1.exe改成你要调用的exe路径就可以了 import java.lang.*; import java.io.*; public class send { public static void main(String[]...
同上
|
这有一个小例子,把他的代码写在jsp画面里就可以了,把E:/MYSELF/SENDMSG/1.exe改成你要调用的exe路径就可以了
import java.lang.*;
import java.io.*;
public class send {
public static void main(String[] args){
try{
Runtime.getRuntime().exec("E:/MYSELF/SENDMSG/1.exe");
}catch(IOException e){
}
}
}
import java.lang.*;
import java.io.*;
public class send {
public static void main(String[] args){
try{
Runtime.getRuntime().exec("E:/MYSELF/SENDMSG/1.exe");
}catch(IOException e){
}
}
}
|
下面是一个调用ping的例子(可以改成别的):
Runtime runtime = Runtime.getRuntime();
Process process =null;
String ip="自己输的ip";
try{
process =runtime.exec("ping "+ip);
}catch(Exception e){
out.println(e);
runtime.exit(1);
}
Runtime runtime = Runtime.getRuntime();
Process process =null;
String ip="自己输的ip";
try{
process =runtime.exec("ping "+ip);
}catch(Exception e){
out.println(e);
runtime.exit(1);
}