简体   繁体   中英

Java newInstance passing args[1]…args[args.length]

(Aside: I'm a Perl programmer and, as you can tell, this is my first non-trivial Java program. Simple terms would be appreciated.)

I have the following launcher as coded working:

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:
/*
*/

As coded the launcher passes all of its arguments "args" to the app being launched. I need to remove args[0] before passing args. I've tried with the code that's commented out but that fails with

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

For completeness I include the app being launched:

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:

What am I doing incorrectly that I can not successfully pass args after shifting?

The correction that fge proposes works! Changed

Object o=createObject(Class.forName(args[0]).getConstructor(new Class[] {WebDriver.class, String[].class}),new Object[] {driver,args});

to

Object o=createObject(Class.forName(args[0]).getConstructor(new Class[] {WebDriver.class, String[].class}),new Object[] {driver,Arrays.copyOfRange(args, 1, args.length)});

Try and use:

Arrays.copyOfRange(args, 1, args.length)

instead. This is much more simple and will use System.arrayCopy() internally anyway.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM