一个JSP开发中有用又好用的类


package  util;

import  java.io. * ;
import  java.util. * ;
import  javax.servlet. * ;

/** */ /** 
 * A class to simplify parameter handling.  It can return parameters of
 * any primitive type (no casting or parsing required), can throw an 
 * exception when a parameter is not found (simplifying error handling),
 * and can accept default values (eliminating error handling).
 * 


 * It is used like this:
 * 

 * ParameterParser parser = new ParameterParser(req); *   * float ratio = parser.getFloatParameter("ratio", 1.0); *   * int count = 0; * try { *   count = parser.getIntParameter("count"); * } * catch (NumberFormatException e) { *   handleMalformedCount(); * } * catch (ParameterNotFoundException e) { *   handleNoCount(); * } * 

 *
 * There's also a capability to find out if any required parameters are
 * missing from a request:
 * 
 * ParameterParser parser = new ParameterParser(req); * String[] required = { "fname", "lname", "account" }; * String[] missing = parser.getMissingParameters(required); * 

 *
 * The default charset for input parameters is ISO-8859-1 (Latin-1).  
 * If the parameter values are encoded in another format, specify that using
 * setCharacterEncoding() before parsing.  The parameter names currently
 * have to be in the Latin-1 character set:
 * 
 * ParameterParser parser = new ParameterParser(req); * parser.setCharacterEncoding("Shift_JIS"); * String japaneseValue = parser.getStringParameter("latinName"); * 

 *
 * 
@see com.oreilly.servlet.ParameterNotFoundException
 *
 * 
@author Jason Hunter, Copyright © 1998, 1999
 * 
@version 1.4, 2000/12/14, better checking the selected encoding is valid in 
 *                           setCharacterEncoding() thanks to Dewayne McNair
 * 
@version 1.3, 2000/05/17, added setCharacterEncoding()
 * 
@version 1.2, 2000/05/17, getBooleanParameter() now recognizes "on" and "yes"
 * 
@version 1.1, 1999/12/20, added getMissingParameters() method
 * 
@version 1.0, 1998/09/18
 
*/

public   class  ParameterParser  ... {

  
private ServletRequest req;
  
private String encoding;

  
/** *//**
   * Constructs a new ParameterParser to handle the parameters of the
   * given request.
   *
   * 
@param req the servlet request
   
*/

  
public ParameterParser(ServletRequest req) ...{
    
this.req = req;
  }


  
/** *//**
   * Sets the character encoding (charset) of the request to help the parser 
   * properly decode parameter values.  The default is to return undecoded values,
   * the same as would be returned by getParameter().
   *
   * 
@param encoding the charset of the request
   * 
@exception UnsupportedEncodingException if the charset is not supported 
   * on this sytem
   
*/

  
public void setCharacterEncoding(String encoding) 
                 
throws UnsupportedEncodingException ...{
    
// Test the encoding is valid
    new String("".getBytes("8859_1"), encoding);
    
// Getting here means we're valid, so set the encoding
    this.encoding = encoding;
  }


  
/** *//**
   * Gets the named parameter value as a String
   *
   * 
@param name the parameter name
   * 
@return the parameter value as a String
   * 
@exception ParameterNotFoundException if the parameter was not found
   * or was the empty string
   
*/

  
public String getStringParameter(String name)
      
throws ParameterNotFoundException ...{
    String[] values 
= req.getParameterValues(name);
    
if (values == null...{
      
throw new ParameterNotFoundException(name + " not found");
    }

    
else if (values[0].length() == 0...{
      
throw new ParameterNotFoundException(name + " was empty");
    }

    
else ...{
      
if (encoding == null...{
        
return values[0];
      }

      
else ...{
        
try ...{
          
return new String(values[0].getBytes("8859_1"), encoding);
        }

        
catch (UnsupportedEncodingException e) ...{
          
return values[0];  // should never happen
        }

      }

    }

  }


  
/** *//**
   * Gets the named parameter value as a String, with a default.
   * Returns the default value if the parameter is not found or 
   * is the empty string.
   * 
   * 
@param name the parameter name
   * 
@param def the default parameter value
   * 
@return the parameter value as a String, or the default
   
*/

  
public String getStringParameter(String name, String def) ...{
    
try ...return getStringParameter(name); }
    
catch (Exception e) ...return def; }
  }


  
/** *//**
   * Gets the named parameter value as a boolean, with true indicated by
   * "true", "on", or "yes" in any letter case, false indicated by "false", 
   * "off", or "no" in any letter case.
   *
   * 
@param name the parameter name
   * 
@return the parameter value as a boolean
   * 
@exception ParameterNotFoundException if the parameter was not found
   * 
@exception NumberFormatException if the parameter could not be converted 
   * to a boolean
   
*/

  
public boolean getBooleanParameter(String name)
      
throws ParameterNotFoundException, NumberFormatException ...{
    String value 
= getStringParameter(name).toLowerCase();
    
if ((value.equalsIgnoreCase("true")) ||
        (value.equalsIgnoreCase(
"on")) ||
        (value.equalsIgnoreCase(
"yes"))) ...{
        
return true;
    }

    
else if ((value.equalsIgnoreCase("false")) ||
             (value.equalsIgnoreCase(
"off")) ||
             (value.equalsIgnoreCase(
"no"))) ...{
        
return false;
    }

    
else ...{
      
throw new NumberFormatException("Parameter " + name + " value " + value + 
                                      
" is not a boolean");
    }

  }


  
/** *//**
   * Gets the named parameter value as a boolean, with a default.
 &

你可能感兴趣的:(jsp,servlet)