51Testing软件测试论坛

标题: 请教Jmeter里面BeanShell执行wget的问题 [打印本页]

作者: qw88508850    时间: 2012-9-28 16:19
标题: 请教Jmeter里面BeanShell执行wget的问题
要在Jmeter里面通过beanshell执行wget来下载文件, 在本地用命令行wget可以正确下载文件
  1. wget http://www.sourcepole.com/assets/2011/1/4/BigFiles-Curl.jmx
复制代码
,但是在Jmeter的BeanShell里面用语句
  1. exec("wget 'http://www.sourcepole.com/assets/2011/1/4/BigFiles-Curl.jmx'")
复制代码
确没有任何反应, 在view result tree里面没有任何错误信息,Sampler Result是
  1. Thread Name: Thread-Gruppe 1-1
  2. Sample Start: 2012-09-28 15:11:46 CST
  3. Load time: 39
  4. Latency: 0
  5. Size in bytes: 0
  6. Headers size in bytes: 0
  7. Body size in bytes: 0
  8. Sample Count: 1
  9. Error Count: 0
  10. Response code: 200
  11. Response message: OK

  12. Response headers:


  13. SampleResult fields:
  14. ContentType:
  15. DataEncoding: null
复制代码
求帮忙看看怎么回事
作者: qw88508850    时间: 2012-10-9 17:23
自己解决问题了, 把答案贴出来供大家参考
  1. String command = "cmd /c start wget.exe xxxxxxxx";
  2. Runtime r = Runtime.getRuntime();
  3. Process p2 = r.exec(command);
复制代码

作者: qw88508850    时间: 2012-10-9 17:23
自己解决问题了, 把答案贴出来供大家参考
  1. String command = "cmd /c start wget.exe xxxxxxxx";
  2. Runtime r = Runtime.getRuntime();
  3. Process p2 = r.exec(command);
复制代码

作者: qw88508850    时间: 2012-10-9 17:23
自己解决问题了, 把答案贴出来供大家参考
  1. String command = "cmd /c start wget.exe xxxxxxxx";
  2. Runtime r = Runtime.getRuntime();
  3. Process p2 = r.exec(command);
复制代码

作者: qw88508850    时间: 2012-10-9 17:23
自己解决问题了, 把答案贴出来供大家参考
  1. String command = "cmd /c start wget.exe xxxxxxxx";
  2. Runtime r = Runtime.getRuntime();
  3. Process p2 = r.exec(command);
复制代码

作者: qw88508850    时间: 2012-10-9 17:25
问题解决了,自己把答案发出来
  1. String command = "cmd /c start wget.exe xxxxxxxxxxxxxxx";
  2. Runtime r = Runtime.getRuntime();
  3. Process p2 = r.exec(command);
复制代码





欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2