【发布时间】:2016-07-05 22:10:30
【问题描述】:
我有两个 jar 文件(例如,我们称它们为 Updater.jar 和 Code.jar)。 Updater.jar 使用其 main 方法启动,然后使用 premain 方法再次启动:
package Update;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;
public class InstructionLauncher {
private List<UpdateInstruction> instructions = new ArrayList<UpdateInstruction>();
private static InstructionLauncher instance;
private Process process;
public static InstructionLauncher initialise(){
if(instance !=null) return instance;
else return new InstructionLauncher();
}
public void registerPremain(UpdateInstruction inst){
instructions.add(inst);
}
public void launchNext(){
UpdateInstruction inst = instructions.get(0);
String cls = inst.getClassName() + "." + inst.getMethodName();
String[] args = new String[]{"java", "-javaagent", "JOSUpdater.jar", "-jar", inst.getClassName() + "." + inst.getMethodName()};
ProcessBuilder builder = new ProcessBuilder(args);
try {
exportResource(cls, cls);
} catch (Exception e) {
UpdateManager.revert();
}
try {
Process p = builder.start();
process = p;
} catch (IOException e) {
e.printStackTrace();
}
while(!process.isAlive())launchNext();
}
private InstructionLauncher(){
instance = this;
}
//From http://stackoverflow.com/questions/10308221/how-to-copy-file-inside-jar-to-outside-the-jar
private String exportResource(String resourceName, String clazz) throws Exception {
InputStream stream = null;
OutputStream resStreamOut = null;
String jarFolder;
try {
stream = Class.forName(clazz).getResourceAsStream(resourceName);//note that each / is a directory down in the "jar tree" been the jar the root of the tree
if(stream == null) {
throw new Exception("Cannot get resource \"" + resourceName + "\" from Jar file.");
}
int readBytes;
byte[] buffer = new byte[4096];
jarFolder = new File(Class.forName(clazz).getProtectionDomain().getCodeSource().getLocation().toURI().getPath()).getParentFile().getPath().replace('\\', '/');
resStreamOut = new FileOutputStream(jarFolder + resourceName);
while ((readBytes = stream.read(buffer)) > 0) {
resStreamOut.write(buffer, 0, readBytes);
}
} catch (Exception ex) {
throw ex;
} finally {
stream.close();
resStreamOut.close();
}
return jarFolder + resourceName;
}
}
premain 方法现在是这样的:
package Update;
import java.lang.instrument.Instrumentation;
public class PremainLauncher {
public static void premain(String args, Instrumentation inst){
inst.addTransformer(new Transformer(), true);
System.out.println("Registered instruction for package: " + args);
}
}
我想知道的是,如何将整个外部 JAR(本例中为 Code.jar)添加到检测路径中?
我知道 Instrumentation.retransformClasses 方法,但要使用它,我需要获取 jar 中所有类的 List>,但我无法完成。
假设 Code.jar 有三个类文件:Main.class、writer.class 和 display.class。有没有办法获取他们每个类对象的列表,而不是他们的名字?
【问题讨论】:
-
只需在类路径中添加您需要的 jar。
-
只是通过修改java.library.path变量吗?
-
我的意思是简单地将你需要的 jar 添加到类路径中,例如java -cp path/to/your.jar;path/to/other.jar com.example.app.MainApp。不确定这是否是您的意思?除此之外,如果您正在寻找更大的灵活性,您可以在运行时通过 URLClassLoader 类动态添加 JAR。
-
我不能
System.setProperty("java.library.path", System.getProperty("java.library.path" + File.separator + "JOSUser.jar");吗?或者这样做有什么不同?我更喜欢以编程方式而不是命令行来回答。 -
"java.library.path"与.jar文件没有任何关系。这是加载native库的路径,见ClassLoader.findLibrary(String)
标签: java jar instrumentation bytecode-manipulation