Я хочу загрузить и выполнить внешний файл jar с помощью URLClassLoader.
Каков самый простой способ получить от него "Main-Class"?
Я хочу загрузить и выполнить внешний файл jar с помощью URLClassLoader.
Каков самый простой способ получить от него "Main-Class"?
Из здесь - перечисление основных атрибутов jarfile
import java.util.*;
import java.util.jar.*;
import java.io.*;
public class MainJarAtr{
public static void main(String[] args){
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
try {
System.out.print("Enter jar file name: ");
String filename = in.readLine();
if(!filename.endsWith(".jar")){
System.out.println("File not in jar format.");
System.exit(0);
}
File file = new File(filename);
if (file.exists()){
// Open the JAR file
JarFile jarfile = new JarFile(filename);
// Get the manifest
Manifest manifest = jarfile.getManifest();
// Get the main attributes in the manifest
Attributes attrs = (Attributes)manifest.getMainAttributes();
// Enumerate each attribute
for (Iterator it=attrs.keySet().iterator(); it.hasNext(); ) {
// Get attribute name
Attributes.Name attrName = (Attributes.Name)it.next();
System.out.print(attrName + ": ");
// Get attribute value
String attrValue = attrs.getValue(attrName);
System.out.print(attrValue);
System.out.println();
}
}
else{
System.out.print("File not found.");
System.exit(0);
}
}
catch (IOException e) {}
}
}
Я знаю, что это старый вопрос, но, по крайней мере, с JDK 1.7, ранее предложенные решения не похоже на работу. По этой причине я размещаю мой:
JarFile j = new JarFile(new File("jarfile.jar"));
String mainClassName = j.getManifest().getMainAttributes().getValue("Main-Class");
Причина, почему другие решения не работали для меня, потому что j.getManifest().getEntries()
оказывается не содержать атрибут Main-Class, который был вместо содержится в списке, возвращаемом по getMainAttributes() метод.
Это возможно только в том случае, если банка выполняется самостоятельно; в этом случае основной класс будет указан в файле манифеста с ключом Main-Class:
Здесь приведена некоторая справочная информация: http://docs.oracle.com/javase/tutorial/deployment/jar/appman.html
Вам нужно будет скачать jarfile, а затем использовать java.util.JarFile
для доступа к нему; для этого может быть код java:
JarFile jf = new JarFile(new File("downloaded-file.jar"));
if(jf.getManifest().getEntries().containsKey("Main-Class")) {
String mainClassName = jf.getManifest().getEntries().get("Main-Class");
}