API java : Pack200


java.util.jar
Class Pack200

java.lang.Object
  extended by java.util.jar.Pack200

public abstract class Pack200
extends Object

Transforms a JAR file to or from a packed stream in Pack200 format. Please refer to Network Trasfer Format JSR 200 Specification at http://jcp.org/aboutJava/communityprocess/review/jsr200/index.html

Typically the packer engine is used by application developers to deploy or host JAR files on a website. The unpacker engine is used by deployment applications to transform the byte-stream back to JAR format.

Here is an example using packer and unpacker:

  1. import java.util.jar.Pack200;
  2. import java.util.jar.Pack200.*;
  3. ...
  4. // Create the Packer object
  5. Packer packer = Pack200.newPacker();
  6.  
  7. // Initialize the state by setting the desired properties
  8. Map p = packer.properties();
  9. // take more time choosing codings for better compression
  10. p.put(Packer.EFFORT, "7"); // default is "5"
  11. // use largest-possible archive segments (>10% better compression).
  12. p.put(Packer.SEGMENT_LIMIT, "-1");
  13. // reorder files for better compression.
  14. p.put(Packer.KEEP_FILE_ORDER, Packer.FALSE);
  15. // smear modification times to a single value.
  16. p.put(Packer.MODIFICATION_TIME, Packer.LATEST);
  17. // ignore all JAR deflation requests,
  18. // transmitting a single request to use "store" mode.
  19. p.put(Packer.DEFLATE_HINT, Packer.FALSE);
  20. // discard debug attributes
  21. p.put(Packer.CODE_ATTRIBUTE_PFX+"LineNumberTable", Packer.STRIP);
  22. // throw an error if an attribute is unrecognized
  23. p.put(Packer.UNKNOWN_ATTRIBUTE, Packer.ERROR);
  24. // pass one class file uncompressed:
  25. p.put(Packer.PASS_FILE_PFX+0, "mutants/Rogue.class");
  26. try {
  27. JarFile jarFile = new JarFile("/tmp/testref.jar");
  28. FileOutputStream fos = new FileOutputStream("/tmp/test.pack");
  29. // Call the packer
  30. packer.pack(jarFile, fos);
  31. jarFile.close();
  32. fos.close();
  33.  
  34. File f = new File("/tmp/test.pack");
  35. FileOutputStream fostream = new FileOutputStream("/tmp/test.jar");
  36. JarOutputStream jostream = new JarOutputStream(fostream);
  37. Unpacker unpacker = Pack200.newUnpacker();
  38. // Call the unpacker
  39. unpacker.unpack(f, jostream);
  40. // Must explicitly close the output.
  41. jostream.close();
  42. } catch (IOException ioe) {
  43. ioe.printStackTrace();
  44. }

A Pack200 file compressed with gzip can be hosted on HTTP/1.1 web servers. The deployment applications can use "Accept-Encoding=pack200-gzip". This indicates to the server that the client application desires a version of the file encoded with Pack200 and further compressed with gzip. Please refer to Java Deployment Guide for more details and techniques.

Unless otherwise noted, passing a null argument to a constructor or method in this class will cause a NullPointerException to be thrown.

Since:
1.5

Nested Class Summary
static interface Pack200.Packer
          The packer engine applies various transformations to the input JAR file, making the pack stream highly compressible by a compressor such as gzip or zip.
static interface Pack200.Unpacker
          The unpacker engine converts the packed stream to a JAR file.
 
Method Summary
static Pack200.Packer newPacker()
          Obtain new instance of a class that implements Packer.
static Pack200.Unpacker newUnpacker()
          Obtain new instance of a class that implements Unpacker.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

newPacker

public static Pack200.Packer newPacker()
Obtain new instance of a class that implements Packer.
  • If the system property java.util.jar.Pack200.Packer is defined, then the value is taken to be the fully-qualified name of a concrete implementation class, which must implement Packer. This class is loaded and instantiated. If this process fails then an unspecified error is thrown.

  • If an implementation has not been specified with the system property, then the system-default implementation class is instantiated, and the result is returned.

  • Note: The returned object is not guaranteed to operate correctly if multiple threads use it at the same time. A multi-threaded application should either allocate multiple packer engines, or else serialize use of one engine with a lock.

    Returns:
    A newly allocated Packer engine.

    newUnpacker

    public static Pack200.Unpacker newUnpacker()
    Obtain new instance of a class that implements Unpacker.
  • If the system property java.util.jar.Pack200.Unpacker is defined, then the value is taken to be the fully-qualified name of a concrete implementation class, which must implement Unpacker. The class is loaded and instantiated. If this process fails then an unspecified error is thrown.

  • If an implementation has not been specified with the system property, then the system-default implementation class is instantiated, and the result is returned.

  • Note: The returned object is not guaranteed to operate correctly if multiple threads use it at the same time. A multi-threaded application should either allocate multiple unpacker engines, or else serialize use of one engine with a lock.

    Returns:
    A newly allocated Unpacker engine.

    Ces informations proviennent du site de http://java.sun.com

    Remarques

    Contenu

    Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :

    Quels sont les motivations de cette démarche?

    Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.

    Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.

    Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.

    Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.

    Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.

    Réseaux sociaux

    Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.

     

    Nuage de mots clés

    7 mots clés dont 0 définis manuellement (plus d'information...).

    Avertissement

    Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.

    Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.

     

    Astuce pour imprimer les couleurs des cellules de tableaux : http://www.gaudry.be/ast-rf-450.html
    Aucun commentaire pour cette page

    © Ce document issu de l′infobrol est enregistré sous le certificat Cyber PrInterDeposit Digital Numbertection. Enregistrement IDDN n° 5329-1421
    Document créé le 29/08/06 23:01, dernière modification le Vendredi 17 Juin 2011, 12:12
    Source du document imprimé : http://www.gaudry.be/java-api-rf-java/util/jar/Pack200.html Document affiché 1 fois ce mois de Juin.
    St.Gaudry©07.01.02
     
    l'infobrol
    Nous sommes le Vendredi 01 Juin 2012, 20:03, toutes les heures sont au format GMT+1.00 Heure, heure d'été (+1)