Java

Working with GCJ and GTK

0

If you are trying to use AWT and SWING under GCJ you should compile it with gtk.

../gcc-4.0.2/configure –prefix=/opt/gcj  –disable-static –disable-checking –without-libbanshee –disable-libmudflap –enable-languages=c,c++,java –enable-java-awt=gtk

Lesson1 : Using JAR Files: The Basics

0

JAR files are packaged with the ZIP file format, so you can use them for “ZIP-like” tasks such as lossless data compression, archiving, decompression, and archive unpacking. These are among the most common uses of JAR files, and you can realize many JAR file benefits using only these basic features.

Even if you want to take advantage of advanced functionality provided by the JAR file format such as electronic signing, you’ll first need to become familiar with the fundamental operations.

To perform basic tasks with JAR files, you use the JavaTM Archive Tool provided as part of the Java Development Kit. Because the Java Archive tool is invoked by using the jar command, for convenience we’ll call it the “Jar tool”.

As a synopsis and preview of some of the topics to be covered in this lesson, the following table summarizes common JAR-file operations:

Operation    Command

To create a JAR file    jar cf jar-file input-file(s)

To view the contents of a JAR file    jar tf jar-file

To extract the contents of a JAR file    jar xf jar-file

To extract specific files from a JAR file    jar xf jar-file archived-file(s)

To run an application packaged as a JAR file (requires the Main-class manifest header)   

java -jar app.jar

To invoke an applet packaged as a JAR file   
<applet code=AppletClassName.class

        archive=”JarFileName.jar”

        width=width height=height>
</applet>

Go to Top