51Testing软件测试论坛
标题:
java语言编写自动化
[打印本页]
作者:
zhaomiaoqq
时间:
2012-7-18 16:08
标题:
java语言编写自动化
用java程序调用了一个windows自带的计算器后,怎么让他自动执行2个数相加啊?代码怎么写啊?
public class Calc {
public static void main(String[] args) {
try {
Runtime runTime=Runtime.getRuntime();
runTime.exec("calc");
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
}
int a=0;
int b=0;
public int add(int x,int y){
int res = x+y;
return res;
}
}
怎么将获取0~9这些按钮呢?
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2