分享
 
 
 

Jar文件高级应用指南

王朝java/jsp·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

在应用程序中处理Jar文件简单介绍了如何使用java.util.jar包提供的API操作jar文件,下面通过一个相对复杂的例子讲述一些Jar文件相关的高级应用。仔细读读这篇文章并参考一下相关的java doc会对你学习java语言有很大的帮助。

下面的应用程序将实现从http服务器装载并执行一个jar文件的功能,比如你的Jar文件的地址为hello.jar。要实现这个功能我们应该首先建立与这个文件的连接然后通过MANIFEST的信息描述得到Main-Class的值,最后装载并运行这个class。这里面需要用到java.net和反射的一些重要知识。这个应用程序由两个类组成:JarClassLoader和JarRunner。

JarClassLoader扩展了URLClassLoader,它有一个成员为URL类型的url变量。

public JarClassLoader(URL url)

{

super(new URL[] { url });

this.url = url;

}

它的两个重要方法是getMainClassName()和invokeClass(),其中前者的目的是通过URL和jar取得连接后,读取MANIFEST的Main-Class属性从而得到应用程序的入点,这非常重要。得到入点后我们就可以通过反射机制装载和运行得到的主类。

public String getMainClassName() throws IOException {

URL u = new URL("jar", "", url + "!/");

JarURLConnection uc = (JarURLConnection)u.openConnection();

Attributes attr = uc.getMainAttributes();

return attr != null

? attr.getValue(Attributes.Name.MAIN_CLASS)

: null;

}

public void invokeClass(String name, String[] args)

throws ClassNotFoundException,

NoSuchMethodException,

InvocationTargetException

{

Class c = this.loadClass(name);

Method m = c.getMethod("main", new Class[] { args.getClass() });

m.setAccessible(true);

int mods = m.getModifiers();

if (m.getReturnType() != void.class || !Modifier.isStatic(mods) ||

!Modifier.isPublic(mods)) {

throw new NoSuchMethodException("main");

}

try {

m.invoke(null, new Object[] { args });

} catch (IllegalAccessException e) {

// This should not happen, as we have disabled access checks

}

}

URL u = new URL("jar", "", url + "!/");

JarURLConnection uc = (JarURLConnection)u.openConnection();

这两段代码构造一个JarURLConnection的实例,注意!/的分隔符的意思是这个url表示的是整个jar文件。这样我们就建立了和jar文件的通信。方法中的后面两句话得到jar文件的主类。在invokeClass方法中,我们首先通过ClassLoader的方法得到包括程序入口的主类,然后得到main方法,判断main方法为我们需要的方法后则调Method的invoke方法执行这个应用程序。

下面是源程序的代码

import java.net.URL;

import java.net.URLClassLoader;

import java.net.JarURLConnection;

import java.lang.reflect.Method;

import java.lang.reflect.Modifier;

import java.lang.reflect.InvocationTargetException;

import java.util.jar.Attributes;

import java.io.IOException;

class JarClassLoader extends URLClassLoader {

private URL url;

public JarClassLoader(URL url) {

super(new URL[] { url });

this.url = url;

}

public String getMainClassName() throws IOException {

URL u = new URL("jar", "", url + "!/");

JarURLConnection uc = (JarURLConnection)u.openConnection();

Attributes attr = uc.getMainAttributes();

return attr != null ? attr.getValue(Attributes.Name.MAIN_CLASS) : null;

}

public void invokeClass(String name, String[] args)

throws ClassNotFoundException,

NoSuchMethodException,

InvocationTargetException

{

Class c = this.loadClass(name);

Method m = c.getMethod("main", new Class[] { args.getClass() });

m.setAccessible(true);

int mods = m.getModifiers();

if (m.getReturnType() != void.class || !Modifier.isStatic(mods) ||

!Modifier.isPublic(mods)) {

throw new NoSuchMethodException("main");

}

try {

m.invoke(null, new Object[] { args });

} catch (IllegalAccessException e) {

// This should not happen, as we have disabled access checks

}

}

}

import java.io.IOException;

import java.net.URL;

import java.net.MalformedURLException;

import java.lang.reflect.InvocationTargetException;

/**

* Runs a jar application from any url. Usage is 'java JarRunner url [args..]'

* where url is the url of the jar file and args is optional arguments to

* be passed to the application's main method.

*/

public class JarRunner {

public static void main(String[] args) {

if (args.length < 1) {

usage();

}

URL url = null;

try {

url = new URL(args[0]);

} catch (MalformedURLException e) {

fatal("Invalid URL: " + args[0]);

}

// Create the class loader for the application jar file

JarClassLoader cl = new JarClassLoader(url);

// Get the application's main class name

String name = null;

try {

name = cl.getMainClassName();

} catch (IOException e) {

System.err.println("I/O error while loading JAR file:");

e.printStackTrace();

System.exit(1);

}

if (name == null) {

fatal("Specified jar file does not contain a 'Main-Class'" +

" manifest attribute");

}

// Get arguments for the application

String[] newArgs = new String[args.length - 1];

System.arraycopy(args, 1, newArgs, 0, newArgs.length);

// Invoke application's main class

try {

cl.invokeClass(name, newArgs);

} catch (ClassNotFoundException e) {

fatal("Class not found: " + name);

} catch (NoSuchMethodException e) {

fatal("Class does not define a 'main' method: " + name);

} catch (InvocationTargetException e) {

e.getTargetException().printStackTrace();

System.exit(1);

}

}

private static void fatal(String s) {

System.err.println(s);

System.exit(1);

}

private static void usage() {

fatal("Usage: java JarRunner url [args..]");

}

}

我们编写一个简单的HelloWorld程序,然后打个jar包,注意你的jar包内的MANIFEST文件一定要包括Main-Class: HelloWorld,否则的话找不到程序的入口。把它放在一个web服务器上比如http://localhost/hello.jar。编译源程序后执行

java JarRunner http://localhost/hello.jar (可以含有参数)在控制台我们会看到hello world的字样输出!

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有