在Jar包中打入DLL文件并调用的方式

DLL会被放入当前jar包文件夹中,在那里会被载入,synchronized保证该过程在多线程下安全。
//BIN_LIB为JAR包中存放DLL的路径
//getResourceAsStream以JAR中根路径为开始点
	private synchronized  void loadLib(String libName) throws IOException {
		String systemType = System.getProperty("os.name");
		String libExtension = (systemType.toLowerCase().indexOf("win")!=-1) ? ".dll" : ".so";
		String libFullName = libName + libExtension;
		String nativeTempDir = System.getProperty("java.io.tmpdir");
		 String filepath = getAppPath(InformationReader.class).substring(1, getAppPath(InformationReader.class).length())+ "/"+libFullName;
		InputStream in = null;
		BufferedInputStream reader = null;
		FileOutputStream writer = null;
//		File extractedLibFile = new File(nativeTempDir+File.separator+libFullName);
		File extractedLibFile = new File(filepath);
		
		if(!extractedLibFile.exists()){
			try {
				in = InformationReader.class.getResourceAsStream(libFullName);
				if(in==null)
					in =  InformationReader.class.getResourceAsStream(libFullName);
				InformationReader.class.getResource(libFullName);
				reader = new BufferedInputStream(in);
				writer = new FileOutputStream(extractedLibFile);
				byte[] buffer = new byte[1024];
				while (reader.read(buffer) > 0){
					writer.write(buffer);
					buffer = new byte[1024];
				}
			} catch (IOException e){
				e.printStackTrace();
			} finally {
			if(in!=null)
				in.close();
			if(writer!=null)
				writer.close();
			}
		}
		System.load(extractedLibFile.toString());
		}
	
	/**-----------------------------------------------------------------------  
	  *getAppPath需要一个当前程序使用的Java类的class属性参数,它可以返回打包过的  
	  *Java可执行文件(jar,war)所处的系统目录名或非打包Java程序所处的目录  
	  *@param cls为Class类型  
	  *@return 返回值为该类所在的Java程序运行的目录  
	  -------------------------------------------------------------------------*/  
	 public static String getAppPath(Class cls){   
	     //检查用户传入的参数是否为空   
	     if(cls==null)    
	      throw new java.lang.IllegalArgumentException("参数不能为空!");   
	     ClassLoader loader=cls.getClassLoader();   
	     //获得类的全名,包括包名   
	     String clsName=cls.getName()+".class";   
	     //获得传入参数所在的包   
	     Package pack=cls.getPackage();   
	     String path="";   
	     //如果不是匿名包,将包名转化为路径   
	     if(pack!=null){   
	         String packName=pack.getName();   
	        //此处简单判定是否是Java基础类库,防止用户传入JDK内置的类库   
	        if(packName.startsWith("java.")||packName.startsWith("javax."))    
	           throw new java.lang.IllegalArgumentException("不要传送系统类!");   
	         //在类的名称中,去掉包名的部分,获得类的文件名   
	         clsName=clsName.substring(packName.length()+1);   
	         //判定包名是否是简单包名,如果是,则直接将包名转换为路径,   
	         if(packName.indexOf(".")<0) path=packName+"/";   
	         else{//否则按照包名的组成部分,将包名转换为路径   
	             int start=0,end=0;   
	             end=packName.indexOf(".");   
	             while(end!=-1){   
	                 path=path+packName.substring(start,end)+"/";   
	                 start=end+1;   
	                 end=packName.indexOf(".",start);   
	             }   
	             path=path+packName.substring(start)+"/";   
	         }   
	     }   
	     //调用ClassLoader的getResource方法,传入包含路径信息的类文件名   
	     java.net.URL url =loader.getResource(path+clsName);   
	     //从URL对象中获取路径信息   
	     String realPath=url.getPath();   
	     //去掉路径信息中的协议名"file:"   
	     int pos=realPath.indexOf("file:");   
	     if(pos>-1) realPath=realPath.substring(pos+5);   
	     //去掉路径信息最后包含类文件信息的部分,得到类所在的路径   
	     pos=realPath.indexOf(path+clsName);   
	     realPath=realPath.substring(0,pos-1);   
	     //如果类文件被打包到JAR等文件中时,去掉对应的JAR等打包文件名   
	     if(realPath.endsWith("!"))   
	         realPath=realPath.substring(0,realPath.lastIndexOf("/"));   
	   /*------------------------------------------------------------  
	    ClassLoader的getResource方法使用了utf-8对路径信息进行了编码,当路径  
	     中存在中文和空格时,他会对这些字符进行转换,这样,得到的往往不是我们想要  
	     的真实路径,在此,调用了URLDecoder的decode方法进行解码,以便得到原始的  
	     中文及空格路径  
	   -------------------------------------------------------------*/  
	   try{   
	     realPath=java.net.URLDecoder.decode(realPath,"utf-8");   
	    }catch(Exception e){throw new RuntimeException(e);}   
	    return realPath;   
	 }//getAppPath定义结束

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值