Following Coobird's excellent answer yesterday, I'm having trouble getting reflection to work in Java. I'll post the classes first then go into detail.
StHandler.java
package ds; public interface StHandler {
public void read();
}
DiStHandler.java
package ds;
public class DiStHandler {
public void read() {
System.out.println("Hello world");
}
Server.java
package ds;
public class Server {
public static void main(String[] args) {
try {
Class<?> clazz = Class.forName("ds.DiStHandler");
StHandler input = (StHandler) clazz.newInstance();
input.read();
}
catch(Exception e) {}
}
What I am trying to do: I have an interface StHandler, which at the moment I want to have a single method: read(). DiStHandler is an implementation class which is available from the classpath. I'm trying to call the read method from here.
The problem: On the line
StHandler input = (StHandler) clazz.newInstance();
I am receiving the error: ds.DiStHandler cannot be cast to ds.StHandler
I have been trying to debug this for nearly two hours now but for the life of me cannot work out what the problem is. The reason I don't have implements StHandler in DiStHandler is because I'm creating DiStHandler in a separate project.
I would greatly appreciate any advice on this. Thanks very much in advance,
M