Retreive Binary File From Jar : Jar File « File Input Output « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » File Input Output » Jar FileScreenshots 
Retreive Binary File From Jar
   
/*
 * Copyright 2006 - 2008 Georges Stephan
 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 
 *      http://www.apache.org/licenses/LICENSE-2.0
 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.logging.*;

import java.io.*;

/**
 
 @author Georges Stephan
 */

public class Util {
  private static Logger logger = Logger.getLogger(Util.class.getName());
    
  public static String validateString(String aString) {
    if(aString==nullreturn("");
    
    aString=aString.replace('\''' ');
    aString=aString.trim();
    return(aString);
  }
    
  public static String removeNonDigits(String aString) {
    StringBuffer newString = new StringBuffer();
    for(int x=0;x<aString.length();x++) {
      if(Character.isDigit(aString.charAt(x))) newString.append(aString.charAt(x));
    }
    return(newString.toString());
  }
    
  public static void createHome() throws Exception {
    File ch = new File(System.getProperty("user.home")+File.separator+".dataform");
    if(!ch.exists()) {
      if(!ch.mkdir()) throw new Exception("Failed to create the dataform configuration directory");
    }
  }
    
  public static String getHomeDir() {
    return(System.getProperty("user.home")+File.separator+".dataform"+File.separator);
  
    
  public static boolean retreiveTextFileFromJar(String resourceName,String targetDirectorythrows Exception {
    boolean found=false;
    if(resourceName!=null) {
      InputStream is = Util.class.getResourceAsStream(resourceName);
      if(is==nulllogger.log(Level.WARNING,"The resource '"+resourceName+"' was not found.");
      BufferedReader br = new BufferedReader(new InputStreamReader(is));
      String line;
      String lineSep = System.getProperty("line.separator");
      StringBuffer sb = new StringBuffer();
      while ((line = br.readLine()) != null) {
        sb.append(line);
        sb.append(lineSep);
      }
      is.close();
      if(sb!=null) {
        if(sb.length()>0) {
          FileWriter temp = new FileWriter(targetDirectory+File.separator+resourceName);
          temp.write(sb.toString());
          temp.close();
          found=true;
        }
      }
    }
    return(found);    
  }
  
  public static boolean retreiveBinaryFileFromJar(String resourceName,String targetDirectory,Object resourcethrows Exception {
    boolean found=false;
    if(resourceName!=null) {
      InputStream is = resource.getClass().getResourceAsStream(resourceName);
      if(is==nullthrow new Exception ("Resource "+resourceName+" was not found.");
      BufferedReader br = new BufferedReader(new InputStreamReader(is));
      FileOutputStream fos = new FileOutputStream(targetDirectory+File.separator+resourceName.substring(resourceName.lastIndexOf('/'),resourceName.length()));
      byte[] buffer = new byte[1024];
            int bytesRead;
            
            while ((bytesRead = is.read(buffer)) != -1) {
                fos.write(buffer, 0, bytesRead);
            }
            fos.flush();
            br.close();
            is.close();
      found=true;
    else {
      found=false;
    }
    return found;
  }

}

   
    
    
  
Related examples in the same category
1. Load an Image from a JAR file
2. List files in a jar file
3. Reading a text file from a jar file without unzipping
4. Load an Icon from a jar
5. Creating a JAR File
6. Sign jar with the certificate named alias in the keystore
7. JAR Archives: Jar Lister
8. JAR Archives: Packer200
9. JAR Archives: Unpacker200
10. Listing the Entries of a JAR File Manifest
11. Listing the Main Attributes in a JAR File Manifest
12. Retrieves the manifest from a JAR file and writes the manifest contents to a file.
13. Create Jar file
14. Get the jar file from a URL
15. Get the jar file
16. Get the jar entry
17. Getting a Jar File Using a URL
18. When no entry is specified on the URL, the entry name is null
19. Get the entry name; it should be the same as specified on URL
20. Manifest Writer
21. Load resource from Jar file
22. Jar Entry OutputStream
23. Helper Class to manipulate Java Archive File
24. Search all jar and zip files in the current directory for a given class file
25. Some utility classes for manipulating JAR files
26. Retreive Text File From Jar
27. Zip jar Imploder
28. InstallJars - a utility to download and install files, Jars and Zips.
29. Get resource from Jar file
30. class for exploding jar/zip files onto the file system
31. Create a URL that refers to a jar file in the file system
32. Create a URL that refers to an entry in the jar file
33. Unjar a file
34. Jar file helper to deployment
35. Make Temp Jar
36. Determine whether a file is a JAR File.
37. Search class in class path and Jar files
38. Add a jar entry to the deployment archive
39. Add jar contents to the deployment archive under the given prefix
40. Jarring and unjarring files and directories.
41. Create a Jar archive containing the src file/directory
42. A class to find resources in the classpath by their mime-type specified in the MANIFEST.
43. Jar builder
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.