JAVA中,要想点击一个按钮,然后运行一个指定的程序(桌面那些程序),怎么实现
2个回答
展开全部
看看这个类,它可以调用本地记事本程序,你将其中的实现方法写到按钮的监听实现方法中即可
import java.io.IOException;
public class NotepadTest {
public void useExe() throws IOException, InterruptedException {
Process p = Runtime.getRuntime().exec("notepad");// 调用本地记事本程序
p.waitFor();
System.out.println("return code: " + p.exitValue());
}
public static void main(String[] args) throws IOException,
InterruptedException {
System.out.println("bgin");
NotepadTest te = new NotepadTest();
te.useExe();
System.out.println("end");
}
}
import java.io.IOException;
public class NotepadTest {
public void useExe() throws IOException, InterruptedException {
Process p = Runtime.getRuntime().exec("notepad");// 调用本地记事本程序
p.waitFor();
System.out.println("return code: " + p.exitValue());
}
public static void main(String[] args) throws IOException,
InterruptedException {
System.out.println("bgin");
NotepadTest te = new NotepadTest();
te.useExe();
System.out.println("end");
}
}
2018-05-31
展开全部
我了解一个 驱动级的键盘鼠标模拟控件,是按键精灵类不能比拟的,秒杀各种安全控件,系统底层硬件模拟,支持云平台,名字叫按键大神 www。anjiandashen。com 有各种操作文档说明,你可以去看看;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询