Easy way to extract a jar file?

I'm looking for an easy way to extract a jar file from with in a java program. I would also like to specify what directory it goes into. I can't seem to find anything on this.

>
...I can't seem to find anything on this.>Where were you looking, under the bed and in the closet? Try [search: extract jar Java|http://lmgtfy.com/?q=extract+jar+Java].
As to specifying a directory, offer the end user a JFileChooser set to browse directories only.

Similar Messages

  • Extract nested Jar File

    Okay, I've been looking all day for solutions to this problem and nothing I've found pinpointed the solution, so if anyone would rather point me to another site, that's great.
    I have a .jar installer ( installer.jar ) that contains the installer code and a nested jar file ( program.jar ).
    In my experience, plain text files work great in the "getInputStream() -> FileWriter.write()" method, but my way of handling images requires javax.imageio.ImageIO, and i'm hoping something similar exists for jars.
    ALL+* i want to do is extract that jar file into the current directory, but the ZipEntry.getInputStream() method didn't work, and JarInputStream just confuses me.
    If anyone has links to other topics or source code to point to how a jarfile can be extracted.

    Thanks for the help.
    After looking around and finally noticing the Pack200 package, I have the answer!
    JarFile jf = new JarFile( "outside.jar" );
    JarOutputStream jos = new JarOutputStream( new FileOutputStream( new File( "inside.jar" ) ) );
    Pack200.newUnpacker().unpack( jar.getInputStream( jar.getEntry( "inside.jar" ) ), jos );
    jos.close();This creates a JarOutputStream that will write to the FileOutputStream forever until closed.
    The Pack200 Unpacker takes the inputstream and outputs it to the JarOutputStream.
    When the unpack method returns, the jar file is ready. Close the jar output stream and you have a workable jar!

  • Is there as easy way of batch converting RGB files to CMYK in OS Lion?

    Is there as easy way of batch converting RGB files to CMYK in OS Lion?
    I was using a photoshop droplet on my desktop but this no longer works due to the fact it requires rosetta support.
    Thx P

    From another forum after googling:
    Your computer came with everything you need, because ColorSync can do that and Apple provided AppleScripts for it. Go to your Applications folder and look for the AppleScript folder. Double click on the 'Example Scripts' alias and then open the ColorSync scripts. Drag and drop your images on the the 'Match to CMYK' script.
    You can open AppleScript Editor from Launchpad (it's in Utilities). Go to Help to Open Example Scripts Folder. In the ColorSync folder is a Match application. Double click to make it run.
    Now you know what it does you may need to change it for batch conversion.
    Go to AppleScript Editor and open what you've just found. And I'm sorry that's as far as my knowledge goes, hope some one can fill in the gaps.
    Or you may just want to look at something like Graphic Converter?
    Regards,
    Colin R.

  • How to extract ZIP/JAR files?

    Hello,
    How can I extract zip/jar files ?
    Eric

    If you are talking java, you can use the java.util.zip classes.
    ZipFile, ZipEntry, ZipInputStream, ZipOutputStream
    You can find lots of examples through google:
    http://www.google.com/search?hl=en&q=java+zip+code+example&meta=Cheers,
    evnafets

  • Any Other ways to implement a .jar file?

    Hi there!!
    I'm a not a java expert, I'm not a beginner as well. I would like to know other ways of executing a .jar file.
    I have jar file which would run a tool called "RRDTOOL" after executing it. That tool users create, update and few other commands to create a database. Here is a snap shot.
    [http://www.fileden.com/files/2009/4/17/2408006//1.jpg|http://www.fileden.com/files/2009/4/17/2408006//1.jpg]
    Is there any way I can implement this .jar file so that I can run the RRDTOOL from the command line itself.
    Like this
    [http://www.fileden.com/files/2009/4/17/2408006//2.jpg|http://www.fileden.com/files/2009/4/17/2408006//2.jpg]
    or this
    [http://www.fileden.com/files/2009/4/17/2408006//3.jpg|http://www.fileden.com/files/2009/4/17/2408006//3.jpg]

    @AndrewThompson64 ,
    Okai now. Let me get into the details still further.
    RRDTool is a tool that creates a Database using its native commands "Create, update and few more). The database that is obtained from RRDTool has .rrd extension. Jrobin is a utility that helps users to create a similar database using Java. Note that the database will have a .jrb extension in this case.
    Now, as mentioned above rrd.jar is something that runs jrobin. The interface that is created using rrd.jar file allows me to create ".jrb" file using RRDTOOL commands. The rrd.jar file acts as an interface in converting RRDTOOL commands to java functions and create .jrb file.
    Now, I want to create and edit .jrb file with out getting into the new environment created by rrd.jar file.

  • Is there a way to sign a JAR file programatically?

    Is there a way to sign a JAR file programatically?

    great! can you give me a short code snippet?
    what about signing J2ME MIDlets?

  • Is there a way to extract an image file metadata?

    I know this isn't specific to PS but hope there's an answer here.
    I'm transcribing some of the metadata from image files to build a simple catalog.  Included are things like dimensions, resolution, and photo date.  Is there a way to extract this data other than manually?
    Thanks
    Tom

    A Photoshop script can with ease.
    // This script is supplied as is. It is provided as freeware.
    // The author accepts no liability for any problems arising from its use.
    <javascriptresource>
    <about>$$$/JavaScripts/metadata/About=JJMack's pdf metadata.^r^rCopyright 2009 Mouseprints.^r^rJJMack's Script.^rNOTE:Copy Document metadata to a text file in same folder with same filename!</about>
    </javascriptresource>
    //<category>JJMack's Script</category>
    // enable double-clicking from Mac Finder or Windows Explorer
    #target photoshop // this command only works in Photoshop CS2 and higher
    // bring application forward for double-click events
    app.bringToFront();
    // ensure at least one document open
    if (!documents.length) {
              alert('There are no documents open.', 'No Document');
    // if at least one document exists, then proceed
    else {
              main();
    // main - main function
    function main() {
              try {
                      // remember users Ruler avd Type Units and set ours
                        var strtRulerUnits = app.preferences.rulerUnits;
                        var strtTypeUnits = app.preferences.typeUnits;
                        app.preferences.rulerUnits = Units.PIXELS;
                         app.preferences.typeUnits = TypeUnits.PIXELS;
                        xml = app.activeDocument.xmpMetadata.rawData;
                    //writeTXT(xml);
                        //alert ("length of metadata = " + xml.length);
                        //alert (xml);
                        xmpdatastart = xml.indexOf("<x:xmpmeta");
                        xmpdataend = xml.indexOf("</x:xmpmeta>") +  "</x:xmpmeta>".length;
                        //alert ("xmpdatastart = " + xmpdatastart + " xmpdatalength = " + xmpdatalength );
                        xmpdata = xml.substr(xmpdatastart, xmpdataend );
                        writeTXT(xmpdata);
                        var mySourceFilePath = activeDocument.fullName.path + "/";
                        alert("Operation Complete! Metadata exported to: " + mySourceFilePath.toString().match(/([^\.]+)/)[1] + app.activeDocument.name.match(/([^\.]+)/)[1] + ".txt");
                        // break up into segments and make text layers
                        n = 1
                        for (var i = 0; i < xmpdataend - xmpdatastart; ){
                                  datalength = xmpdata.indexOf("</rdf:Description>") +  "</rdf:Description>".length;
                                  //alert ("datalength = " + datalength );
                                  if (datalength == 17) { datalength = 34;}
                                  data = xmpdata.substr(0, datalength);
                                  endofdata = xmpdata.indexOf("</x:xmpmeta>") +  "</x:xmpmeta>".length;
                                  xmpdata = xmpdata.substr(datalength, endofdata);
                                  i = i + datalength;
                                  // addTextLayer(data, n);
                                    alert (data);
                                  n = n + 1;
                        app.preferences.rulerUnits = strtRulerUnits;
                        app.preferences.typeUnits = strtTypeUnits;
              // display error message if something goes wrong
              catch(e) { alert(e + ': on line ' + e.line, 'Script Error', true); }
    function addTextLayer(textdata, n) {
            /* textX and TextY positions text placement 0 and 0 Top Left corner of image in pixels          */
              var textX = 0;
              var textY = 0;
              /* Internal Photoshop Text font name                                                                      */
            var fontName = "ArialMT";
              var fontName = "TimesNewRomanPSMT";
              //var fontName = "Tahoma";
              var fontSize = 6;
              /* Text Color                                                                                                    */
              textColor = new SolidColor;
              textColor.rgb.red = 255;
              textColor.rgb.green = 255;
              textColor.rgb.blue = 255;
              text_layer = app.activeDocument.artLayers.add();                                        // Add a Layer
              text_layer.kind = LayerKind.TEXT;                                                            // Make Layer a Text Layer
              text_layer.textItem.color = textColor;                                                            // set text layer color
              text_layer.blendMode = BlendMode.NORMAL                                                            // blend mode
              text_layer.textItem.font = fontName;                                                            // set text font
              text_layer.textItem.size = fontSize;                                                            // set text font Size
              text_layer.textItem.position = Array(textX, (textY + (fontSize * 3)) );                    // set text layers position in and down for fontsize
              //text_layer.textItem.position = Array(textX, (textY + (fontSize * 3 * n)) );          // set text layers position in and down for fontsize
              text_layer.textItem.contents = textdata;                                                  // set text layers text
    // Write TXT file
        function writeTXT(data) {
              // Use this to export metadata file to same directory where this file is located
              var mySourceFilePath = activeDocument.fullName.path + "/";
              // create a reference to a file for output
              var TXTFile = new File(mySourceFilePath.toString().match(/([^\.]+)/)[1] + app.activeDocument.name.match(/([^\.]+)/)[1] + ".txt");
            try {
                if(TXTFile.exists) {
                    TXTFile.open ("e");
                    TXTFile.seek (0,2);      // Move to EOF
                } else {
                TXTFile.open ("w");          // Add unicode marker if we change to XML file format for this log file
            TXTFile.encoding = "UTF8";       // set UTF8
            TXTFile.write(data);
            TXTFile.close();
            } catch (e) {
                alert(e);
            } finally {
            return;
    Outputs an XML file that looks like this:
    <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        ">
       <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
          <rdf:Description rdf:about=""
                xmlns:dc="http://purl.org/dc/elements/1.1/">
             <dc:format>image/tiff</dc:format>
             <dc:creator>
                <rdf:Seq>
                   <rdf:li>Pam McAssey</rdf:li>
                </rdf:Seq>
             </dc:creator>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:aux="http://ns.adobe.com/exif/1.0/aux/">
             <aux:SerialNumber>720600641</aux:SerialNumber>
             <aux:LensInfo>24/1 70/1 0/0 0/0</aux:LensInfo>
             <aux:Lens>EF24-70mm f/2.8L USM</aux:Lens>
             <aux:LensID>230</aux:LensID>
             <aux:ImageNumber>0</aux:ImageNumber>
             <aux:ApproximateFocusDistance>122/100</aux:ApproximateFocusDistance>
             <aux:FlashCompensation>0/1</aux:FlashCompensation>
             <aux:Firmware>1.0.6</aux:Firmware>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:xmp="http://ns.adobe.com/xap/1.0/">
             <xmp:ModifyDate>2012-12-19T11:23:49-05:00</xmp:ModifyDate>
             <xmp:CreateDate>2012-12-16T17:11:53</xmp:CreateDate>
             <xmp:Rating>0</xmp:Rating>
             <xmp:MetadataDate>2012-12-19T11:23:49-05:00</xmp:MetadataDate>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/">
             <photoshop:DateCreated>2012-12-16T17:11:53</photoshop:DateCreated>
             <photoshop:ColorMode>3</photoshop:ColorMode>
             <photoshop:ICCProfile>ProPhoto RGB</photoshop:ICCProfile>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
                xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
                xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#">
             <xmpMM:DocumentID>xmp.did:b13179a4-0983-a649-a532-0d90ea6feea5</xmpMM:DocumentID>
             <xmpMM:OriginalDocumentID>E634097DE11761C5824C1873DDBDEDDD</xmpMM:OriginalDocumentID>
             <xmpMM:InstanceID>xmp.iid:b13179a4-0983-a649-a532-0d90ea6feea5</xmpMM:InstanceID>
             <xmpMM:History>
                <rdf:Seq>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:9d0e25ce-f732-d74a-9631-086fc6151324</stEvt:instanceID>
                      <stEvt:when>2012-12-16T16:11:44-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/metadata</stEvt:changed>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:0816d1f7-2bb5-e344-806a-6da92a4c8540</stEvt:instanceID>
                      <stEvt:when>2012-12-16T16:13:18-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/metadata</stEvt:changed>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>derived</stEvt:action>
                      <stEvt:parameters>converted from image/x-canon-cr2 to image/tiff</stEvt:parameters>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:b13179a4-0983-a649-a532-0d90ea6feea5</stEvt:instanceID>
                      <stEvt:when>2012-12-19T11:23:49-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/</stEvt:changed>
                   </rdf:li>
                </rdf:Seq>
             </xmpMM:History>
             <xmpMM:DerivedFrom rdf:parseType="Resource">
                <stRef:instanceID>xmp.iid:0816d1f7-2bb5-e344-806a-6da92a4c8540</stRef:instanceID>
                <stRef:documentID>E634097DE11761C5824C1873DDBDEDDD</stRef:documentID>
                <stRef:originalDocumentID>E634097DE11761C5824C1873DDBDEDDD</stRef:originalDocumentID>
             </xmpMM:DerivedFrom>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:crs="http://ns.adobe.com/camera-raw-settings/1.0/">
             <crs:RawFileName>_S1H4635.CR2</crs:RawFileName>
             <crs:Version>7.3</crs:Version>
             <crs:ProcessVersion>6.7</crs:ProcessVersion>
             <crs:WhiteBalance>As Shot</crs:WhiteBalance>
             <crs:Temperature>5950</crs:Temperature>
             <crs:Tint>+46</crs:Tint>
             <crs:Saturation>0</crs:Saturation>
             <crs:Sharpness>25</crs:Sharpness>
             <crs:LuminanceSmoothing>0</crs:LuminanceSmoothing>
             <crs:ColorNoiseReduction>25</crs:ColorNoiseReduction>
             <crs:VignetteAmount>0</crs:VignetteAmount>
             <crs:ShadowTint>0</crs:ShadowTint>
             <crs:RedHue>0</crs:RedHue>
             <crs:RedSaturation>0</crs:RedSaturation>
             <crs:GreenHue>0</crs:GreenHue>
             <crs:GreenSaturation>0</crs:GreenSaturation>
             <crs:BlueHue>0</crs:BlueHue>
             <crs:BlueSaturation>0</crs:BlueSaturation>
             <crs:Vibrance>0</crs:Vibrance>
             <crs:HueAdjustmentRed>0</crs:HueAdjustmentRed>
             <crs:HueAdjustmentOrange>0</crs:HueAdjustmentOrange>
             <crs:HueAdjustmentYellow>0</crs:HueAdjustmentYellow>
             <crs:HueAdjustmentGreen>0</crs:HueAdjustmentGreen>
             <crs:HueAdjustmentAqua>0</crs:HueAdjustmentAqua>
             <crs:HueAdjustmentBlue>0</crs:HueAdjustmentBlue>
             <crs:HueAdjustmentPurple>0</crs:HueAdjustmentPurple>
             <crs:HueAdjustmentMagenta>0</crs:HueAdjustmentMagenta>
             <crs:SaturationAdjustmentRed>0</crs:SaturationAdjustmentRed>
             <crs:SaturationAdjustmentOrange>0</crs:SaturationAdjustmentOrange>
             <crs:SaturationAdjustmentYellow>0</crs:SaturationAdjustmentYellow>
             <crs:SaturationAdjustmentGreen>0</crs:SaturationAdjustmentGreen>
             <crs:SaturationAdjustmentAqua>0</crs:SaturationAdjustmentAqua>
             <crs:SaturationAdjustmentBlue>0</crs:SaturationAdjustmentBlue>
             <crs:SaturationAdjustmentPurple>0</crs:SaturationAdjustmentPurple>
             <crs:SaturationAdjustmentMagenta>0</crs:SaturationAdjustmentMagenta>
             <crs:LuminanceAdjustmentRed>0</crs:LuminanceAdjustmentRed>
             <crs:LuminanceAdjustmentOrange>0</crs:LuminanceAdjustmentOrange>
             <crs:LuminanceAdjustmentYellow>0</crs:LuminanceAdjustmentYellow>
             <crs:LuminanceAdjustmentGreen>0</crs:LuminanceAdjustmentGreen>
             <crs:LuminanceAdjustmentAqua>0</crs:LuminanceAdjustmentAqua>
             <crs:LuminanceAdjustmentBlue>0</crs:LuminanceAdjustmentBlue>
             <crs:LuminanceAdjustmentPurple>0</crs:LuminanceAdjustmentPurple>
             <crs:LuminanceAdjustmentMagenta>0</crs:LuminanceAdjustmentMagenta>
             <crs:SplitToningShadowHue>0</crs:SplitToningShadowHue>
             <crs:SplitToningShadowSaturation>0</crs:SplitToningShadowSaturation>
             <crs:SplitToningHighlightHue>0</crs:SplitToningHighlightHue>
             <crs:SplitToningHighlightSaturation>0</crs:SplitToningHighlightSaturation>
             <crs:SplitToningBalance>0</crs:SplitToningBalance>
             <crs:ParametricShadows>0</crs:ParametricShadows>
             <crs:ParametricDarks>0</crs:ParametricDarks>
             <crs:ParametricLights>0</crs:ParametricLights>
             <crs:ParametricHighlights>0</crs:ParametricHighlights>
             <crs:ParametricShadowSplit>25</crs:ParametricShadowSplit>
             <crs:ParametricMidtoneSplit>50</crs:ParametricMidtoneSplit>
             <crs:ParametricHighlightSplit>75</crs:ParametricHighlightSplit>
             <crs:SharpenRadius>+1.0</crs:SharpenRadius>
             <crs:SharpenDetail>25</crs:SharpenDetail>
             <crs:SharpenEdgeMasking>0</crs:SharpenEdgeMasking>
             <crs:PostCropVignetteAmount>0</crs:PostCropVignetteAmount>
             <crs:GrainAmount>0</crs:GrainAmount>
             <crs:ColorNoiseReductionDetail>50</crs:ColorNoiseReductionDetail>
             <crs:LensProfileEnable>0</crs:LensProfileEnable>
             <crs:LensManualDistortionAmount>0</crs:LensManualDistortionAmount>
             <crs:PerspectiveVertical>0</crs:PerspectiveVertical>
             <crs:PerspectiveHorizontal>0</crs:PerspectiveHorizontal>
             <crs:PerspectiveRotate>0.0</crs:PerspectiveRotate>
             <crs:PerspectiveScale>100</crs:PerspectiveScale>
             <crs:AutoLateralCA>0</crs:AutoLateralCA>
             <crs:Exposure2012>-1.30</crs:Exposure2012>
             <crs:Contrast2012>-25</crs:Contrast2012>
             <crs:Highlights2012>0</crs:Highlights2012>
             <crs:Shadows2012>0</crs:Shadows2012>
             <crs:Whites2012>+2</crs:Whites2012>
             <crs:Blacks2012>-9</crs:Blacks2012>
             <crs:Clarity2012>0</crs:Clarity2012>
             <crs:DefringePurpleAmount>0</crs:DefringePurpleAmount>
             <crs:DefringePurpleHueLo>30</crs:DefringePurpleHueLo>
             <crs:DefringePurpleHueHi>70</crs:DefringePurpleHueHi>
             <crs:DefringeGreenAmount>0</crs:DefringeGreenAmount>
             <crs:DefringeGreenHueLo>40</crs:DefringeGreenHueLo>
             <crs:DefringeGreenHueHi>60</crs:DefringeGreenHueHi>
             <crs:ConvertToGrayscale>False</crs:ConvertToGrayscale>
             <crs:ToneCurveName2012>Linear</crs:ToneCurveName2012>
             <crs:ToneCurvePV2012>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012>
             <crs:ToneCurvePV2012Red>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Red>
             <crs:ToneCurvePV2012Green>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Green>
             <crs:ToneCurvePV2012Blue>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Blue>
             <crs:CameraProfile>Adobe Standard</crs:CameraProfile>
             <crs:CameraProfileDigest>3CE8523BCEA625D0F0ABABADE3BCC281</crs:CameraProfileDigest>
             <crs:LensProfileSetup>LensDefaults</crs:LensProfileSetup>
             <crs:HasSettings>True</crs:HasSettings>
             <crs:HasCrop>False</crs:HasCrop>
             <crs:AlreadyApplied>True</crs:AlreadyApplied>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:tiff="http://ns.adobe.com/tiff/1.0/">
             <tiff:XResolution>240/1</tiff:XResolution>
             <tiff:YResolution>240/1</tiff:YResolution>
             <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
             <tiff:Make>Canon</tiff:Make>
             <tiff:Model>Canon EOS-1D Mark IV</tiff:Model>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:exif="http://ns.adobe.com/exif/1.0/">
             <exif:ExifVersion>0221</exif:ExifVersion>
             <exif:PixelXDimension>4896</exif:PixelXDimension>
             <exif:PixelYDimension>3264</exif:PixelYDimension>
             <exif:DateTimeOriginal>2012-12-16T17:11:53</exif:DateTimeOriginal>
             <exif:ExposureTime>1/30</exif:ExposureTime>
             <exif:FNumber>28/10</exif:FNumber>
             <exif:ExposureProgram>2</exif:ExposureProgram>
             <exif:ISOSpeedRatings>
                <rdf:Seq>
                   <rdf:li>3200</rdf:li>
                </rdf:Seq>
             </exif:ISOSpeedRatings>
             <exif:ShutterSpeedValue>4906891/1000000</exif:ShutterSpeedValue>
             <exif:ApertureValue>2970854/1000000</exif:ApertureValue>
             <exif:ExposureBiasValue>0/1</exif:ExposureBiasValue>
             <exif:MaxApertureValue>3/1</exif:MaxApertureValue>
             <exif:MeteringMode>5</exif:MeteringMode>
             <exif:Flash rdf:parseType="Resource">
                <exif:Fired>False</exif:Fired>
                <exif:Return>0</exif:Return>
                <exif:Mode>2</exif:Mode>
                <exif:Function>False</exif:Function>
                <exif:RedEyeMode>False</exif:RedEyeMode>
             </exif:Flash>
             <exif:FocalLength>64/1</exif:FocalLength>
             <exif:FocalPlaneXResolution>4896000/1290</exif:FocalPlaneXResolution>
             <exif:FocalPlaneYResolution>3264000/836</exif:FocalPlaneYResolution>
             <exif:FocalPlaneResolutionUnit>2</exif:FocalPlaneResolutionUnit>
             <exif:CustomRendered>0</exif:CustomRendered>
             <exif:ExposureMode>0</exif:ExposureMode>
             <exif:WhiteBalance>0</exif:WhiteBalance>
             <exif:SceneCaptureType>0</exif:SceneCaptureType>
             <exif:SubSecTime>00</exif:SubSecTime>
             <exif:SubSecTimeOriginal>00</exif:SubSecTimeOriginal>
             <exif:SubSecTimeDigitized>00</exif:SubSecTimeDigitized>
             <exif:SerialNumber>720600641</exif:SerialNumber>
             <exif:LensInfo>
                <rdf:Seq>
                   <rdf:li>24/1</rdf:li>
                </rdf:Seq>
             </exif:LensInfo>
             <exif:Lens>EF24-70mm f/2.8L USM</exif:Lens>
          </rdf:Description>
       </rdf:RDF>
    </x:xmpmeta>
                                                       <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        ">
       <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
          <rdf:Description rdf:about=""
                xmlns:dc="http://purl.org/dc/elements/1.1/">
             <dc:format>image/tiff</dc:format>
             <dc:creator>
                <rdf:Seq>
                   <rdf:li>Pam McAssey</rdf:li>
                </rdf:Seq>
             </dc:creator>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:aux="http://ns.adobe.com/exif/1.0/aux/">
             <aux:SerialNumber>720600641</aux:SerialNumber>
             <aux:LensInfo>24/1 70/1 0/0 0/0</aux:LensInfo>
             <aux:Lens>EF24-70mm f/2.8L USM</aux:Lens>
             <aux:LensID>230</aux:LensID>
             <aux:ImageNumber>0</aux:ImageNumber>
             <aux:ApproximateFocusDistance>122/100</aux:ApproximateFocusDistance>
             <aux:FlashCompensation>0/1</aux:FlashCompensation>
             <aux:Firmware>1.0.6</aux:Firmware>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:xmp="http://ns.adobe.com/xap/1.0/">
             <xmp:ModifyDate>2012-12-19T11:23:49-05:00</xmp:ModifyDate>
             <xmp:CreateDate>2012-12-16T17:11:53</xmp:CreateDate>
             <xmp:Rating>0</xmp:Rating>
             <xmp:MetadataDate>2012-12-19T11:23:49-05:00</xmp:MetadataDate>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/">
             <photoshop:DateCreated>2012-12-16T17:11:53</photoshop:DateCreated>
             <photoshop:ColorMode>3</photoshop:ColorMode>
             <photoshop:ICCProfile>ProPhoto RGB</photoshop:ICCProfile>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
                xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
                xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#">
             <xmpMM:DocumentID>xmp.did:b13179a4-0983-a649-a532-0d90ea6feea5</xmpMM:DocumentID>
             <xmpMM:OriginalDocumentID>E634097DE11761C5824C1873DDBDEDDD</xmpMM:OriginalDocumentID>
             <xmpMM:InstanceID>xmp.iid:b13179a4-0983-a649-a532-0d90ea6feea5</xmpMM:InstanceID>
             <xmpMM:History>
                <rdf:Seq>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:9d0e25ce-f732-d74a-9631-086fc6151324</stEvt:instanceID>
                      <stEvt:when>2012-12-16T16:11:44-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/metadata</stEvt:changed>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:0816d1f7-2bb5-e344-806a-6da92a4c8540</stEvt:instanceID>
                      <stEvt:when>2012-12-16T16:13:18-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/metadata</stEvt:changed>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>derived</stEvt:action>
                      <stEvt:parameters>converted from image/x-canon-cr2 to image/tiff</stEvt:parameters>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:b13179a4-0983-a649-a532-0d90ea6feea5</stEvt:instanceID>
                      <stEvt:when>2012-12-19T11:23:49-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/</stEvt:changed>
                   </rdf:li>
                </rdf:Seq>
             </xmpMM:History>
             <xmpMM:DerivedFrom rdf:parseType="Resource">
                <stRef:instanceID>xmp.iid:0816d1f7-2bb5-e344-806a-6da92a4c8540</stRef:instanceID>
                <stRef:documentID>E634097DE11761C5824C1873DDBDEDDD</stRef:documentID>
                <stRef:originalDocumentID>E634097DE11761C5824C1873DDBDEDDD</stRef:originalDocumentID>
             </xmpMM:DerivedFrom>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:crs="http://ns.adobe.com/camera-raw-settings/1.0/">
             <crs:RawFileName>_S1H4635.CR2</crs:RawFileName>
             <crs:Version>7.3</crs:Version>
             <crs:ProcessVersion>6.7</crs:ProcessVersion>
             <crs:WhiteBalance>As Shot</crs:WhiteBalance>
             <crs:Temperature>5950</crs:Temperature>
             <crs:Tint>+46</crs:Tint>
             <crs:Saturation>0</crs:Saturation>
             <crs:Sharpness>25</crs:Sharpness>
             <crs:LuminanceSmoothing>0</crs:LuminanceSmoothing>
             <crs:ColorNoiseReduction>25</crs:ColorNoiseReduction>
             <crs:VignetteAmount>0</crs:VignetteAmount>
             <crs:ShadowTint>0</crs:ShadowTint>
             <crs:RedHue>0</crs:RedHue>
             <crs:RedSaturation>0</crs:RedSaturation>
             <crs:GreenHue>0</crs:GreenHue>
             <crs:GreenSaturation>0</crs:GreenSaturation>
             <crs:BlueHue>0</crs:BlueHue>
             <crs:BlueSaturation>0</crs:BlueSaturation>
             <crs:Vibrance>0</crs:Vibrance>
             <crs:HueAdjustmentRed>0</crs:HueAdjustmentRed>
             <crs:HueAdjustmentOrange>0</crs:HueAdjustmentOrange>
             <crs:HueAdjustmentYellow>0</crs:HueAdjustmentYellow>
             <crs:HueAdjustmentGreen>0</crs:HueAdjustmentGreen>
             <crs:HueAdjustmentAqua>0</crs:HueAdjustmentAqua>
             <crs:HueAdjustmentBlue>0</crs:HueAdjustmentBlue>
             <crs:HueAdjustmentPurple>0</crs:HueAdjustmentPurple>
             <crs:HueAdjustmentMagenta>0</crs:HueAdjustmentMagenta>
             <crs:SaturationAdjustmentRed>0</crs:SaturationAdjustmentRed>
             <crs:SaturationAdjustmentOrange>0</crs:SaturationAdjustmentOrange>
             <crs:SaturationAdjustmentYellow>0</crs:SaturationAdjustmentYellow>
             <crs:SaturationAdjustmentGreen>0</crs:SaturationAdjustmentGreen>
             <crs:SaturationAdjustmentAqua>0</crs:SaturationAdjustmentAqua>
             <crs:SaturationAdjustmentBlue>0</crs:SaturationAdjustmentBlue>
             <crs:SaturationAdjustmentPurple>0</crs:SaturationAdjustmentPurple>
             <crs:SaturationAdjustmentMagenta>0</crs:SaturationAdjustmentMagenta>
             <crs:LuminanceAdjustmentRed>0</crs:LuminanceAdjustmentRed>
             <crs:LuminanceAdjustmentOrange>0</crs:LuminanceAdjustmentOrange>
             <crs:LuminanceAdjustmentYellow>0</crs:LuminanceAdjustmentYellow>
             <crs:LuminanceAdjustmentGreen>0</crs:LuminanceAdjustmentGreen>
             <crs:LuminanceAdjustmentAqua>0</crs:LuminanceAdjustmentAqua>
             <crs:LuminanceAdjustmentBlue>0</crs:LuminanceAdjustmentBlue>
             <crs:LuminanceAdjustmentPurple>0</crs:LuminanceAdjustmentPurple>
             <crs:LuminanceAdjustmentMagenta>0</crs:LuminanceAdjustmentMagenta>
             <crs:SplitToningShadowHue>0</crs:SplitToningShadowHue>
             <crs:SplitToningShadowSaturation>0</crs:SplitToningShadowSaturation>
             <crs:SplitToningHighlightHue>0</crs:SplitToningHighlightHue>
             <crs:SplitToningHighlightSaturation>0</crs:SplitToningHighlightSaturation>
             <crs:SplitToningBalance>0</crs:SplitToningBalance>
             <crs:ParametricShadows>0</crs:ParametricShadows>
             <crs:ParametricDarks>0</crs:ParametricDarks>
             <crs:ParametricLights>0</crs:ParametricLights>
             <crs:ParametricHighlights>0</crs:ParametricHighlights>
             <crs:ParametricShadowSplit>25</crs:ParametricShadowSplit>
             <crs:ParametricMidtoneSplit>50</crs:ParametricMidtoneSplit>
             <crs:ParametricHighlightSplit>75</crs:ParametricHighlightSplit>
             <crs:SharpenRadius>+1.0</crs:SharpenRadius>
             <crs:SharpenDetail>25</crs:SharpenDetail>
             <crs:SharpenEdgeMasking>0</crs:SharpenEdgeMasking>
             <crs:PostCropVignetteAmount>0</crs:PostCropVignetteAmount>
             <crs:GrainAmount>0</crs:GrainAmount>
             <crs:ColorNoiseReductionDetail>50</crs:ColorNoiseReductionDetail>
             <crs:LensProfileEnable>0</crs:LensProfileEnable>
             <crs:LensManualDistortionAmount>0</crs:LensManualDistortionAmount>
             <crs:PerspectiveVertical>0</crs:PerspectiveVertical>
             <crs:PerspectiveHorizontal>0</crs:PerspectiveHorizontal>
             <crs:PerspectiveRotate>0.0</crs:PerspectiveRotate>
             <crs:PerspectiveScale>100</crs:PerspectiveScale>
             <crs:AutoLateralCA>0</crs:AutoLateralCA>
             <crs:Exposure2012>-1.30</crs:Exposure2012>
             <crs:Contrast2012>-25</crs:Contrast2012>
             <crs:Highlights2012>0</crs:Highlights2012>
             <crs:Shadows2012>0</crs:Shadows2012>
             <crs:Whites2012>+2</crs:Whites2012>
             <crs:Blacks2012>-9</crs:Blacks2012>
             <crs:Clarity2012>0</crs:Clarity2012>
             <crs:DefringePurpleAmount>0</crs:DefringePurpleAmount>
             <crs:DefringePurpleHueLo>30</crs:DefringePurpleHueLo>
             <crs:DefringePurpleHueHi>70</crs:DefringePurpleHueHi>
             <crs:DefringeGreenAmount>0</crs:DefringeGreenAmount>
             <crs:DefringeGreenHueLo>40</crs:DefringeGreenHueLo>
             <crs:DefringeGreenHueHi>60</crs:DefringeGreenHueHi>
             <crs:ConvertToGrayscale>False</crs:ConvertToGrayscale>
             <crs:ToneCurveName2012>Linear</crs:ToneCurveName2012>
             <crs:ToneCurvePV2012>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012>
             <crs:ToneCurvePV2012Red>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Red>
             <crs:ToneCurvePV2012Green>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Green>
             <crs:ToneCurvePV2012Blue>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Blue>
             <crs:CameraProfile>Adobe Standard</crs:CameraProfile>
             <crs:CameraProfileDigest>3CE8523BCEA625D0F0ABABADE3BCC281</crs:CameraProfileDigest>
             <crs:LensProfileSetup>LensDefaults</crs:LensProfileSetup>
             <crs:HasSettings>True</crs:HasSettings>
             <crs:HasCrop>False</crs:HasCrop>
             <crs:AlreadyApplied>True</crs:AlreadyApplied>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:tiff="http://ns.adobe.com/tiff/1.0/">
             <tiff:XResolution>240/1</tiff:XResolution>
             <tiff:YResolution>240/1</tiff:YResolution>
             <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
             <tiff:Make>Canon</tiff:Make>
             <tiff:Model>Canon EOS-1D Mark IV</tiff:Model>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:exif="http://ns.adobe.com/exif/1.0/">
             <exif:ExifVersion>0221</exif:ExifVersion>
             <exif:PixelXDimension>4896</exif:PixelXDimension>
             <exif:PixelYDimension>3264</exif:PixelYDimension>
             <exif:DateTimeOriginal>2012-12-16T17:11:53</exif:DateTimeOriginal>
             <exif:ExposureTime>1/30</exif:ExposureTime>
             <exif:FNumber>28/10</exif:FNumber>
             <exif:ExposureProgram>2</exif:ExposureProgram>
             <exif:ISOSpeedRatings>
                <rdf:Seq>
                   <rdf:li>3200</rdf:li>
                </rdf:Seq>
             </exif:ISOSpeedRatings>
             <exif:ShutterSpeedValue>4906891/1000000</exif:ShutterSpeedValue>
             <exif:ApertureValue>2970854/1000000</exif:ApertureValue>
             <exif:ExposureBiasValue>0/1</exif:ExposureBiasValue>
             <exif:MaxApertureValue>3/1</exif:MaxApertureValue>
             <exif:MeteringMode>5</exif:MeteringMode>
             <exif:Flash rdf:parseType="Resource">
                <exif:Fired>False</exif:Fired>
                <exif:Return>0</exif:Return>
                <exif:Mode>2</exif:Mode>
                <exif:Function>False</exif:Function>
                <exif:RedEyeMode>False</exif:RedEyeMode>
             </exif:Flash>
             <exif:FocalLength>64/1</exif:FocalLength>
             <exif:FocalPlaneXResolution>4896000/1290</exif:FocalPlaneXResolution>
             <exif:FocalPlaneYResolution>3264000/836</exif:FocalPlaneYResolution>
             <exif:FocalPlaneResolutionUnit>2</exif:FocalPlaneResolutionUnit>
             <exif:CustomRendered>0</exif:CustomRendered>
             <exif:ExposureMode>0</exif:ExposureMode>
             <exif:WhiteBalance>0</exif:WhiteBalance>
             <exif:SceneCaptureType>0</exif:SceneCaptureType>
             <exif:SubSecTime>00</exif:SubSecTime>
             <exif:SubSecTimeOriginal>00</exif:SubSecTimeOriginal>
             <exif:SubSecTimeDigitized>00</exif:SubSecTimeDigitized>
             <exif:SerialNumber>720600641</exif:SerialNumber>
             <exif:LensInfo>
                <rdf:Seq>
                   <rdf:li>24/1</rdf:li>
                </rdf:Seq>
             </exif:LensInfo>
             <exif:Lens>EF24-70mm f/2.8L USM</exif:Lens>
          </rdf:Description>
       </rdf:RDF>
    </x:xmpmeta>
    Message was edited by: JJMack

  • How to ban extracting from .jar file?

    Hello
    Problem of .jar file is: .class files can be extracted (with winrar ...) and decompiled. I don't want my classes to be decompiled. But I still need my jar executable of course.
    Is some solution which bans extraction without any impact on executability?
    Thank you very much.
    Tony

    Is some solution which bans extraction without any
    impact on executability?Hmmmm you could not put any class files in your jar. That would eliminate the extraction problem. Probably would be detrimental to execution.
    What do you think happens when your app runs? It just magically knows about your classes without extracting them?
    Not so much no.
    Use an obfuscator.
    Or if that's not good enough use another language or just panic.

  • Extract a jar file

    Hi Everyone,
    I have a .jar file which contains some java packages. How can extract this file to view the package contents.
    Thanks a lot.
    Hung

    You can open the jar file with an extraction program (like winzip, or tar) or you can try
    jar -xvf [jarfile]
    from the command line

  • Easy way to manipulate overlay image file?

    Greetings, I'm currently trying to figure out how to simplify something for a client so they can make quick changes. Here's what I have:
    - Menu with a video in the background playing in a 30s loop.
    - Menu buttons with a specific "tile" I created in Photoshop, and placed into DVDSP as an overlay. This button "tile" (a vertical triangle) was placed in a specific position relative to the video in the background.
    - Menu buttons illuminate the triangle when you select a specific button properly.
    Now, the client has changed the background video from a 4:3 video to a 16:9 video, and wants to move the text and buttons on the menu. In doing so, this means the button "tile" needs to shift many pixels down.
    As far as I can tell, there's no way to simply grab the overlay image file and drag it down a few pixels, line it up by eye and be done with it. Do I have to go into Photoshop, manipulate the image, re-save it and reintroduce it to DVDSP?
    Basically, is there an easy way to move or relocate the overlay image file within DVDSP? Thanks!

    Tiresias314 wrote:
    As far as I can tell, there's no way to simply grab the overlay image file and drag it down a few pixels, line it up by eye and be done with it. Do I have to go into Photoshop, manipulate the image, re-save it and reintroduce it to DVDSP?
    Basically, is there an easy way to move or relocate the overlay image file within DVDSP? Thanks!
    Overlays cannot be moved or relocated in DVD SP. Best bet is to do it in a Custom 16:9 preset in Photoshop

  • Is there an easy way to preview an html file in firefox?

    We have an html file supplied to us for an eblast template. Is there an easy way to preview this code in firefox to see how it will look?

    You can open an HTML file in Firefox via File > Open File for previewing.
    Your above posted system details show outdated plugin(s) with known security and stability risks.
    * Shockwave Flash 9.0 r246
    * Java 1.3.1 Plug-in
    Update the [[Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version via Software update.<br />
    See http://support.apple.com/downloads/
    http://support.apple.com/kb/HT2312 - About Java 2 Platform Standard Edition (J2SE) 5.0 Release 1 for Tiger
    http://support.apple.com/kb/DL847 - Java for Mac OS X 10.4, Release 9
    http://support.apple.com/downloads/Java_2_SE_5_0_Release_1

  • Is there an easier way to load a MIDI file in Logic8?

    Please, does anyone know how to import a MIDI file into Logic 8 withouthaving to manually reset all the instruments and sounds for each track? I have recently switched to a mac and want to perform along with the MIDI back-tracks I always use, but I don't know how to get Logic to do this w/o spending gobs of time assigning SW instruments for each track in every file (!!). Is there an easier way, or perhaps a better program to do this with? On my PC I can use a GM MIDI player that does this automatically. These are professionally made MIDI files with all program and channel settings built in.
    Thanks.

    Just use "import" & the sw insts' will load and assign accordingly, automatically.
    But oddly, there are times when importing a SMF w/imbedded prgm changes, that LP8 loads a completely wrong instrument to a specific track(s).
    One reason that I've kept only one of my trustworthy external midi modules (Roland XV5080), specifically for just importing SMFs'. When the XV is in GM mode, any standard midi files I import to LP8... always load pgm changes correctly 100% of the time.

  • I can't extract any .jar files?

    Hey,
    I think I have all the runtimes installed. Trying to install the ajax blueprints package. If I double click the jar file nothing happens. If I do a "java -jar package.jar" I get this
    C:\java>java -jar bpcatalog-1.0.1_02-installer.jar
    Exception in thread "main" java.lang.UnsupportedClassVersionError: bpcatalog (Unsupported major.minor version 49.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    I also get something similar trying to install glassfish :(
    Thanks
    Craig

    This error
    Exception in thread "main" java.lang.UnsupportedClassVersionError: bpcatalog (Unsupported major.minor version 49.0)
    means you're trying to use a Java version earlier than 1.5.0 to manipulate Java classes that were compiled with 1.5 - the older version can't understand the newer class files.
    You'll probably need to change to the current Java version.

  • Easy way to cut 85 minute file into 85 1 minute files?

    I'm guessing it can't be done (easily) in Premiere Pro.
    I downloaded VirtualDub, but all I can see how to do is set one minute segments separately. Is there a way to make all 85 files at once in VirtualDub or any other program?

    1.) In VirtualDub, choose 'Direct Stream Copy' from the Video menu. This will avoid recompression of the video.
    2.) Go to File/Save Segmented .AVI...
    3.) Check "Limit number of frames per segment" and enter a value (assuming this is 30 fps, then that's 30 * 60 = 1800 frames per minute)

  • Easy way to search for jsp file

    is there a way to search for a file in jdeveloper. I have lots of jsp file. and I sometimes i know the full name or partial name of the jsp file, but not sure if there is a way to search for the file in JDev.
    Thanks in advnace.

    When you run the search all of the files that match your query will be listed in message log. Simply double click on the file in the message log to view it.
    --Ric                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for

  • Function Keys (fn+F2, fn+F3 and fn+F4) doesn't work

    Hello. I have ProBook 4730s and today i cant use my hotkeys for brightness and for external monitor. I need help for this trouble. I already reinstal HP hotkey driver an even graphic control driver but this did not work. Any other solution? I use thi

  • Quick photo ordering question...

    I am in the process of ordering a bunch of photos, and I have a question: When I select the photos, say 25 of them, then select "Order Prints", I see all of my photos in a list, but I have to select the quantity for EACH PHOTO! Is there ANY way I can

  • Default printer was not valid, switching to 'GetUnPrinter'

    I recently deployed my web application to Red-Hat Linux and I'm receiving the following error:  "Default printer was not valid, switching to 'GetUnPrinter'." I pinpointed the line of code throwing the exception, which is:  ReportClientDocument report

  • Nokia 500 Boot problem

    Hi... I have a Nokia 500 Symbian Belle version, but one day I can't start my phone, it always display a 5 dots on screen and does not continue to show the Nokia Logo, the 5 dots are blinking always and it cant boot to Symbian Belle. Is there any prob

  • Java Production Environment

    I am trying to figure what pieces of software/components that I would need to run a java client-server application. Using a web browser accessing information from a server. I have programmed with Java using struts in the past, but have not ever set u