java调用带输入参数的可执行文件解决方法

java调用带输入参数的可执行文件
用java调用一个带输入参数的可执行文件。在dos命令行中,该可执行文件的输入参数直接跟在后面,用空格隔开。我写的代码如下:
  try{
String command[] = {"E:\\myeclipseworkspace\\SemanticClassifier1.0\\Release\\consoleapi.exe","http://futures.hexun.com/2012-05-14/141361774.html"}; 
 
Process rcg = Runtime.getRuntime().exec(command);} 
  catch (IOException e){
System.out.print(e.toString());  



输入参数是一个url.运行结果即没报错,也没有出结果。请问各位高人问题出在哪?

------解决方案--------------------
分不拿会浪费的呀