(旁白:我是一个Perl程序员,正如您所知道的,这是我的第一个不平凡的Java程序。(请提供简单的条件。)
我有以下作为编码工作的发射器:
import java.lang.reflect.*;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.WebDriver;
/*
The following class was cobbled together by a Perl guy ...
*/
class LaunchOnLocal {
public static void main(String[] args) {
System.err.println("LaunchOnLocal.main ...");
WebDriver driver=new FirefoxDriver();
try {
// The following works but passes arg[0] to the constructor ..
Object o=createObject(Class.forName(args[0]).getConstructor(new Class[] {WebDriver.class, String[].class}),new Object[] {driver,args});
/* Fails ... Here I'm trying NOT to pass arg[0]
String[] passingArgs=new String[args.length-1];
System.arraycopy(args,1,passingArgs,0,passingArgs.length);
Object[] passingArgsArray={passingArgs};
Object o=createObject(Class.forName(args[0]).getConstructor(new Class[] {WebDriver.class, String[].class}),new Object[] {driver,passingArgsArray});
*/
}
catch (ClassNotFoundException e) {
e.printStackTrace(System.err);
}
catch (NoSuchMethodException e) {
e.printStackTrace(System.err);
}
finally {
driver.close();
driver.quit();
System.err.println("... LaunchOnLocal.main");
};
}; // main:
public static Object createObject(Constructor constructor,Object[] arguments) {
System.err.println("LaunchOnLocal.createObject ...");
System.err.println("Constructor: "+constructor.toString());
Object object=null;
try {
object=constructor.newInstance(arguments);
System.err.println("Object: "+object.toString());
//return object;
}
catch (InstantiationException e) {
e.printStackTrace(System.err);
}
catch (IllegalAccessException e) {
e.printStackTrace(System.err);
}
catch (IllegalArgumentException e) {
e.printStackTrace(System.err);
}
catch (InvocationTargetException e) {
e.getCause.printStackTrace(System.err);
}
finally {
System.err.println("... LaunchOnLocal.createObject");
return object;
}
}; // createPbkect:
}; // LaunchOnLocal:
/*
*/在编写代码时,启动程序将其所有参数"args“传递给正在启动的应用程序。我需要在经过args之前把args移除。我试过注释掉的代码,但是它失败了
java LaunchOnLocal Test one two
LaunchOnLocal.main ...
LaunchOnLocal.createObject ...
Constructor: public Test(org.openqa.selenium.WebDriver,java.lang.String[]) throws java.lang.InterruptedException
java.lang.IllegalArgumentException: argument type mismatch
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at LaunchOnLocal.createObject(LaunchOnLocal.java:41)
at LaunchOnLocal.main(LaunchOnLocal.java:20)
... LaunchOnLocal.createObject
... LaunchOnLocal.main为了完整起见,我包括正在启动的应用程序:
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.WebDriver;
public class Test {
public Test (WebDriver driver, String[] args) throws InterruptedException {
System.out.println("Test.Test ...");
for (String arg: args) {
System.out.println(arg);
};
driver.navigate().to("http://www.sojicity.com/");
Thread.sleep(10000);
// Just so we can crash!
int i=1;
//i=0; // uncomment this line to cause an error
i=i/i;
System.out.println("... Test.Test.");
}; // Test:
}; // Test:我在做什么不正确的,我不能成功通过火箭后,移位?
fge建议的修正是有效的!变化
Object o=createObject(Class.forName(args[0]).getConstructor(new Class[] {WebDriver.class, String[].class}),new Object[] {driver,args});至
Object o=createObject(Class.forName(args[0]).getConstructor(new Class[] {WebDriver.class, String[].class}),new Object[] {driver,Arrays.copyOfRange(args, 1, args.length)});发布于 2014-03-09 15:56:57
试着使用:
Arrays.copyOfRange(args, 1, args.length)而不是。这要简单得多,并且将在内部使用System.arrayCopy()。
https://stackoverflow.com/questions/22284339
复制相似问题