bundle 与 package】的更多相关文章

转:http://blog.csdn.net/lmbda/article/details/17895619 bundle是Apple提供的软件安装的便捷方法. bundle为用户和开发者提供了一个简单地接口. bundle和package    package:看起来像一个文件的目录    bundle: 一个目录,有标准的层次结构,包含了可执行文件和必须的资源,看起来像一个文件. package提供了一种让电脑更好用的抽象基础.在电脑中的应用或者插件其实就是一个目录.这个目录里包含了一个应用所…
Issue: When you imported some 3rd jars and compiled MANIFEST.MF, you may got following compling error. "No available bundle exports package" Reason: There may be some jars are neglected to be imported to MANIFEST.MF. Solution: 1. Select MANIFEST…
bundle是Apple提供的软件安装的便捷方法. bundle为用户和开发者提供了一个简单地接口. bundle 和 package package:看起来像一个文件的目录       bundle: 一个目录,有标准的层次结构,包含了可执行文件和必须的资源,看起来像一个文件. package提供了一种让电脑更好用的抽象基础.在电脑中的应用或者插件其实就是一个目录.这个目录里包含了一个应用所需要的所有,包括可执行代码和资源.在Finder中这个目录被认为是一个文件.这样应用管理起来很方便. …
[[NSBundle mainBundle] pathForResource:@"someFileName" ofType:@"yourFileExtension"];  [YourViewController initWithNibName:"YourViewController" bundle:nil]; 可是你知道这里的bundle到底是个啥玩意呢?! Bundle简单地讲,就是一个内部结构按照标准规则组织的特殊目录   iOS的应用都是通…
ADT Bundle Platform Package Size MD5 Checksum Windows 32-bit adt-bundle-windows-x86-20140624.zip 377325518 bytes 5655cd8be53c4b27c5242d81943c5a25 Windows 64-bit adt-bundle-windows-x86_64-20140624.zip 377477237 bytes 0f1fa29a0f229e36ba0fb87bb7ee68d4 M…
使用OSGI模块化标准构建Java EE项目,其中比较繁琐的一个方面就是Bundle资源的获取,因为很多开源框架官方都没有发布Bundle版本的Jar文件,这也是使用OSGI开发企业应用首先要解决的问题. 本篇文章中,我们来总结一下Bundle资源的获取途径,包括如下几种方式: 一.从SpringSource Enterprise Bundle Repository下载 这种方式前面文章中已经提到过,SpringSource Enterprise Bundle Repository是目前最全面的…
初学iOS开发的同学,不管是自己写的,还是粘贴的代码,或多或少都写过下面的代码 [[NSBundle mainBundle] pathForResource:@"someFileName" ofType:@"yourFileExtension"];  [YourViewController initWithNibName:"YourViewController" bundle:nil]; 可是你知道这里的bundle到底是个啥玩意呢?! Bund…
Develop and register service, lookup and use service! Android Design on service's publish-find-bind model. What is OSGi(Open Service Gateway Initiative)?: http://www.osgi.org/Technology/WhatIsOSGi http://dz.prosyst.com/pdoc/mBS_R5_SDK_7.3.0_beta/gett…
初学iOS开发的同学,不管是自己写的,还是粘贴的代码,或多或少都写过下面的代码 [[NSBundle mainBundle] pathForResource:@"someFileName" ofType:@"yourFileExtension"];  [YourViewController initWithNibName:"YourViewController" bundle:nil]; 可是你知道这里的bundle到底是个啥玩意呢?! Bund…
Message: 定义: public final class Message implements Parcelable Message类是个final类,就是说不能被继承,同时Message类实现了Parcelable接口,我们知道android提供了一种新的类型:Parcel.本类被用作封装数据的容器,是链表结构,有个属性next和sPool,这两个变量是不同的,具体什么不同看下文. 文档描述: Defines a message containing a description and…