-2
任何人都可以將這些行從jre 1.5轉換爲1.8嗎?Eclipse jre 1.5> 1.8
即使如果我把我的Eclipse項目版本1.5我的罐子休息。
Map<String, byte[]> resources = new HashMap<>();
Enumeration<JarEntry> enumeration = jar.entries();
Class<?> clazz = loader.loadClass("com.kit.Application");
Method main = clazz.getMethod("main", String[].class);
if (main != null) {
main.invoke(null, (Object) new String[]{});
Class<?> applicationClass = applicationObject.getClass();
Method setDockIconImage = applicationClass.getDeclaredMethod("setDockIconImage", new Class[]{Image.class});
setDockIconImage.invoke(applicationObject, (Object) ICON_IMAGE);`
有什麼問題?錯誤?消息? –
它只是告訴我這個; http://prntscr.com/f3qpby – Mikk
它說1.5或更大,所以使用1.8的Java應該解決這個問題,爲什麼轉換到Java的舊版本,當它說1.5或更大。只是使用Java 1.8版本 –