我想通過反射調用一個方法。問題的方法,讓我們說Java反射和接口作爲參數
public void someMethod(someInterface<someObject> arg1)
我沒有在運行時訪問someMethod
和someInterface
,並請有
someclass.getMethod("someMethod", new Class[]{Class.forName("someInterface")})
.invoke(...)
調用,但失敗了ClassNotFound的例外someInterface
。我如何獲得接口的Class
對象?
可能的重複:http://stackoverflow.com/questions/10635025/classnotfound-exception-using-java-reflection – RAS 2012-09-25 06:13:05