51Testing软件测试论坛
标题:
请教Jmeter里面BeanShell执行wget的问题
[打印本页]
作者:
qw88508850
时间:
2012-9-28 16:19
标题:
请教Jmeter里面BeanShell执行wget的问题
要在Jmeter里面通过beanshell执行wget来下载文件, 在本地用命令行wget可以正确下载文件
wget http://www.sourcepole.com/assets/2011/1/4/BigFiles-Curl.jmx
复制代码
,但是在Jmeter的BeanShell里面用语句
exec("wget 'http://www.sourcepole.com/assets/2011/1/4/BigFiles-Curl.jmx'")
复制代码
确没有任何反应, 在view result tree里面没有任何错误信息,Sampler Result是
Thread Name: Thread-Gruppe 1-1
Sample Start: 2012-09-28 15:11:46 CST
Load time: 39
Latency: 0
Size in bytes: 0
Headers size in bytes: 0
Body size in bytes: 0
Sample Count: 1
Error Count: 0
Response code: 200
Response message: OK
Response headers:
SampleResult fields:
ContentType:
DataEncoding: null
复制代码
求帮忙看看怎么回事
作者:
qw88508850
时间:
2012-10-9 17:23
自己解决问题了, 把答案贴出来供大家参考
String command = "cmd /c start wget.exe xxxxxxxx";
Runtime r = Runtime.getRuntime();
Process p2 = r.exec(command);
复制代码
作者:
qw88508850
时间:
2012-10-9 17:23
自己解决问题了, 把答案贴出来供大家参考
String command = "cmd /c start wget.exe xxxxxxxx";
Runtime r = Runtime.getRuntime();
Process p2 = r.exec(command);
复制代码
作者:
qw88508850
时间:
2012-10-9 17:23
自己解决问题了, 把答案贴出来供大家参考
String command = "cmd /c start wget.exe xxxxxxxx";
Runtime r = Runtime.getRuntime();
Process p2 = r.exec(command);
复制代码
作者:
qw88508850
时间:
2012-10-9 17:23
自己解决问题了, 把答案贴出来供大家参考
String command = "cmd /c start wget.exe xxxxxxxx";
Runtime r = Runtime.getRuntime();
Process p2 = r.exec(command);
复制代码
作者:
qw88508850
时间:
2012-10-9 17:25
问题解决了,自己把答案发出来
String command = "cmd /c start wget.exe xxxxxxxxxxxxxxx";
Runtime r = Runtime.getRuntime();
Process p2 = r.exec(command);
复制代码
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2