Possible Duplicate:
Java: How to load a class (and its inner classes) that is already on the class path?

Could someone help me understand how to create an instance of an inner class using getConstructor.

Here is where I am at right now.

import java.lang.reflect.*;

public class Outer{
public Outer(int i){
//things to do
}
public class Inner{
Class<?>[] type = new Class<?>[1];
Class<?> myClass;
    public Inner(int i){
    //stuff and code
    }

    public void task(){
    type[0] = Integer.class;
    try{
        myClass = Class.forName("Outer$Inner");
        Constructor construct = myClass.getConstructor(type);
        Object i = construct.newInstance(new Integer(43));
    }
    catch(Exception e){
        e.printStackTrace();
    }
    }
}

public static void main(String[] args){
Outer outer = new Outer(new Integer(21));
Inner inner = outer.new Inner(new Integer(22));
inner.task();
}

}

error information

java.lang.NoSuchMethodException: Outer$Inner.<init>(java.lang.Integer)
at java.lang.Class.getConstructor0(Class.java:2706)
at java.lang.Class.getConstructor(Class.java:1657)
at Outer$Inner.task(Outer.java:18)
at Outer.main(Outer.java:30)

sorry if I am missing something obvious If I can figure this out I would like to take input from a txt file and use the string to create objects.

link|improve this question
This problem is not solved in the linked question. – James Dec 18 '10 at 5:48
feedback

closed as exact duplicate by BalusC, Stephen C, Carlos Heuberger, axtavt, Graviton Dec 19 '10 at 6:49

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote -1 down vote accepted

Constructor newInstance problem

You should careful while initializing inner class

public void task() {
            try {
                myClass = Class.forName("test2.server.Outer$Inner"); // my package
                Constructor[] construct = myClass.getConstructors();

                System.out.println(construct[0].toString()); //public test2.server.Outer$Inner(test2.server.Outer,java.lang.Integer)

                Object i = construct[0].newInstance(null, new Integer(43));
                System.out.println("Yeyyyyy :)");
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

Look at the System.out.println(construct[0].toString()); it is //public test2.server.Outer$Inner(test2.server.Outer,java.lang.Integer)

So you should init as a constructor(outer , integer)

all the code :

package test2.server;

import java.lang.reflect.*;

public class Outer {
    public Outer(int i) {
        // things to do
    }

    public class Inner {
        Class<?>[] type = new Class<?>[1];
        Class<?> myClass;

        public Inner(Integer i) {
            // stuff and code
        }

        public void task() {
            type[0] = Integer.class;
            try {
                myClass = Class.forName("test2.server.Outer$Inner");
                Constructor[] construct = myClass.getConstructors();

                System.out.println(construct[0].toString()); //public test2.server.Outer$Inner(test2.server.Outer,java.lang.Integer)

                Object i = construct[0].newInstance(null, new Integer(43));
                System.out.println("Yeyyyyy :)");
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    public static void main(String[] args) {
        Outer outer = new Outer(new Integer(21));
        Inner inner = outer.new Inner(new Integer(22));
        inner.task();
    }
}
link|improve this answer
Thanks that was just what I needed, hopefully I've learned something. – Train5spotting Dec 18 '10 at 13:36
feedback

Does it work if you change InnerClass to be a static class instead?

It generally needs the context of the Outer class to create the inner class, if it's not a static inner class. I believe you need to pass the Outer instance to the constructor - let me pull a random reference out my rear:

http://jroller.com/tomdz/entry/reflection_inner_classes

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.