advertisement
javaboutique
Search Tips
Articles  |   Tutorials  |   Reviews  |   Tools  |   by Category  |   by Date  |   by Name  |   Submit  |   Source  |   Forums  |  
javaboutique
Browse DevX


Partners & Affiliates











advertisement

Articles : JavaBoutique's Introduction to Java :
Distributing Applets :

Contents
Introduction
3 Scenarios
Why Archive?
.zip, .cab, and .jar
Conclusions

.zip, .cab, and .jar

Distribution History

As we noted earlier, for most of the history of Java development, there was really no packaging. For the most part, the developer was required to put each class file as a separate file on the web server in the same hierarchy as the packages defined in your Java files. For example, if you had a com.test.utility package you would need a directory hierarchy of com/test/utility under the directory with the main applet class.

Unfortunately, this meant that in order for a web browser to get all of the supporting files it needed, it would have to open up a separate HTTP connection for each file. Given the state of web traffic, site overload, and any number of Internet gremlins, this could add all sorts of delays to the download. What's more, the files transferred were not compressed in any way.

Archiving Applets with Netscape's ZIP Format

Initially, Netscape came to the rescue by allowing developers to put class files and supporting files like images and data in a single uncompressed ZIP file. Although, files were not compressed, this was certainly a valuable distribution option. Any web surfer who used Netscape Navigator to view a Java applet need only download a single ZIP file.

Thus, most developers created an uncompressed ZIP file and placed it along with the raw class files on the server. That way, Navigator users could get the speedier ZIP file and surfers using other Java-enabled browsers could still have the separate class files available to them. The HTML now evolved to something like this:

<HTML>
<HEAD>
<TITLE>My Applet</TITLE>
</HEAD>
<BODY>
<APPLET CODE = "myApplet.class" WIDTH = "200"
        HEIGHT = "400" ARCHIVE = "myApplet.zip">
</APPLET>
</BODY>
</HTML>

Compressing Archives with Microsoft's CAB Format

Nipping at the heels of Netscape, Microsoft soon introduced the CAB format to even the score, and as usual, make things even more complex for the developer. CAB files followed the same logic as Netscape's ZIP archive format. The developer could archive their entire applet into one file and use the CABBASE parameter to direct Internet Explorer browsers where they could pick up the code (this is discussed in Chapter Two). The HTML looked something like this:

<HTML>
<HEAD>
<TITLE>My Applet</TITLE>
</HEAD>
<BODY>
<APPLET CODE = "myApplet.class" WIDTH = "200"
        HEIGHT = "400">
<PARAM NAME = "cabbase" VALUE = "myApplet.cab">

</APPLET>
</BODY>
</HTML>

However, CAB files had one extra goody. Internet Explorer supported compressed CAB files. This made transferring large Java applets much more efficient because large files could be compressed into much smaller ones.

But, as we mentioned, this only added another level of complexity to the chores necessary for developers wishing to distribute their applications. Specifically, a developer now needed to have (1) all the raw files available for less popular browsers such as Hot Java, (2) a ZIP file for Netscape Navigator users, and (3) a CAB file for Microsoft Internet Explorer users.

Signing Compressed Archives with Netscape's JAR Format

Not to be outdone, and already deeply ensconced in the battle over web supremacy, Netscape and Sun joined together to develop the JAR (Java ARchive) format. Distributed as part of the JDK 1.1, JAR is a platform-independent file format (based on the ZIP file format) that allows a developer to bundle and compress a Java applet and its requisite components (class files, images and sounds) into a single file.

Further, the JAR Format allowed applet authors to digitally sign individual entries in a JAR file to authenticate their origin. You create and manipulate JAR files using the jar utility program that has command line arguments similar to those of the popular UNIX tar program and then reference the archive using HTML such as the following:

<HTML>
<HEAD>
<TITLE>My Applet</TITLE>
</HEAD>
<BODY>
<APPLET CODE = "myApplet.class" WIDTH = "200"
        HEIGHT = "400" ARCHIVE = "myApplet.jar">

</APPLET>
</BODY>
</HTML>

NEXT


Selena Sol contributes to the JavaBoutique's Introduction to Java. Selena curently works for Barclays Capital in London, one of the leading global investment banks in Europe and has worked as a software developer for the National Center for Human Genome research, Microline Software, Neuron Data, and Electric Eye in Singapore. Selena is perhaps best-known for creating the Public Domain Web Script Archive (Extropia) and writing several books on Web Programming (Perl, CGI, Java).
Email: selena@extropia.com

 Intel Go Parallel Portal
 Internet.com eBook Library
 IBM Software Construction Toolbox
 Microsoft RIA Development Center
 Destination .NET
XML error: not well-formed (invalid token) at line 43
advertisement
Receive Articles via our XML/RSS feed
Receive Articles via our XML/RSS feed

JavaBytes
Internet Cyclone
This powerful, easy-to-use, internet optimizer is for Windows 95, 98, ME, NT, 2000 and XP. It's designed to automatically optimize your Windows settings, boosting your Internet connection up to 200%.

Google Hopes Chrome Will Help, Not Hurt Firefox
Remember Figlets? They're Back With Zend
Microsoft Readies an App Store Competitor?
Google: Chrome Browser Will Make Money
Sam Ramji: Microsoft's Man in Open Source
Google to Shake Up Browsers With Own Launch
Mozilla's Ubquity Mashup: For The Masses?
iPhone Users Just Want to Have Fun
Oops! I Fixed the Linux Kernel
Jim Zemlin: The New Center of Linux Gravity

Code Around C#'s Using Statement to Release Unmanaged Resources
Writing Functional Code with RDFa
BitLocker Brings Encryption to Windows Server 2008
Network Know-How: Exploring Network Algorithms
Create a Durable and Reliable WCF Service with MSMQ 4.0
The Baker's Dozen: 13 Tips for SQL Server 2008 and SSRS 2008
Book Excerpt: Microsoft Expression Blend Unleashed
Develop a Mobile RSS Feed the Easy Way
State of the Semantic Web: Know Where to Look
A 3D Exploration of the HTML Canvas Element

Advertising Info  |   Member Services  |   Contact Us  |   Help  |   Feedback  |   Site Map  |   Network Map  |   About



JupiterOnlineMedia

internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info


Legal Notices, Licensing, Reprints, & Permissions, Privacy Policy.

Advertise | Newsletters | Tech Jobs | Shopping | E-mail Offers

Solutions
Whitepapers and eBooks
Intel PDF: Virtualization Delivers Data Center Efficiency
Intel eBook: Managing the Evolving Data Center
Microsoft Article: BitLocker Brings Encryption to Windows Server 2008
Symantec eBook: The Guide to E-Mail Archiving and Management
Microsoft Article: RODCs Transform Branch Office Security
Go Parallel Article: James Reinders on the Intel Parallel Studio Beta Program
Avaya Article: Advancing the State of the Art in Customer Service
Adobe Acrobat Connect Pro: Web Conferencing and eLearning Whitepapers
Avaya Article: Avaya AE Services Provide Rapid Telephony Integration with Facebook
Go Parallel Article: Getting Started with TBB on Windows
HP eBook: Storage Networking , Part 1
MORE WHITEPAPERS, EBOOKS, AND ARTICLES
Webcasts
Intel Seminar: Efficiencies in Hardware/Software Virtualization
HP Webcast: Disaster Recovery Planning
Go Parallel Video: Performance and Threading Tools for Game Developers
HP Video: StorageWorks EVA4400 and Oracle
HP Webcast: Storage Is Changing Fast - Be Ready or Be Left Behind
MORE WEBCASTS, PODCASTS, AND VIDEOS
Downloads and eKits
IBM TCO eKIT: Your IT Budget is Under Attack, Get in Control
IBM Energy Efficiency eKIT: Learn How to Reduce Costs
30-Day Trial: SPAMfighter Exchange Module
Red Gate Download: SQL Toolbelt and free High-Performance SQL Code eBook
Iron Speed Designer Application Generator
MORE DOWNLOADS, EKITS, AND FREE TRIALS
Tutorials and Demos
Microsoft Article: Silverlight Streaming--Free Video Hosting for All
Featured Algorithm: Intel Threading Building Blocks - parallel_reduce
HP Demo: StorageWorks EVA4400
MORE TUTORIALS, DEMOS AND STEP-BY-STEP GUIDES