net.sf.javascriptzip
Class JavaScriptZipHelper

java.lang.Object
  extended by net.sf.javascriptzip.JavaScriptZipHelper

public final class JavaScriptZipHelper
extends java.lang.Object

This class contains helper methods to JavaScriptZip

Author:
Luis Fernando Planella Gonzalez - lfpg.dev@gmail.com

Method Summary
static java.lang.String fileLengthDisplay(java.io.File file)
          Returns a display size of the file length
static boolean isScript(java.io.File file)
          Returns if the specified file is a script (ends with .js)
static java.io.File[] listScripts(java.io.File directory)
          Lists the scripts on the specified directory
static java.lang.String prepareParameter(java.lang.String parameter)
          Prepares a parameter to pass to JavaScriptZip
static java.lang.String readFile(java.io.File file)
          Reads the file to a String
static void writeFile(java.io.File file, java.lang.String contents)
          Writes a String to a file
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

fileLengthDisplay

public static java.lang.String fileLengthDisplay(java.io.File file)
Returns a display size of the file length

Parameters:
file - The file
Returns:
The display size

isScript

public static boolean isScript(java.io.File file)
Returns if the specified file is a script (ends with .js)

Parameters:
file - The file
Returns:
Is a script?

listScripts

public static java.io.File[] listScripts(java.io.File directory)
                                  throws java.io.IOException
Lists the scripts on the specified directory

Parameters:
directory - The directory
Returns:
The script files
Throws:
java.io.IOException - Error reading the directory

prepareParameter

public static java.lang.String prepareParameter(java.lang.String parameter)
Prepares a parameter to pass to JavaScriptZip

Parameters:
parameter - The parameter value
Returns:
The new value

readFile

public static java.lang.String readFile(java.io.File file)
                                 throws java.io.IOException
Reads the file to a String

Parameters:
file - The file
Returns:
The file contents
Throws:
java.io.IOException - Error reading the file

writeFile

public static void writeFile(java.io.File file,
                             java.lang.String contents)
                      throws java.io.IOException
Writes a String to a file

Parameters:
file - The file
contents - The file contents
Throws:
java.io.IOException - Error writing the file