Class Uploaded


  • public class Uploaded
    extends java.lang.Object
    The Class Uploader is a utility to work with multipart form uploaded content.
    Author:
    Italo Osorio
    • Constructor Summary

      Constructors 
      Constructor Description
      Uploaded​(javax.servlet.http.HttpServletRequest request)
      Instantiates a new uploaded object using a HTTP Request
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      FormField get​(java.lang.String fieldName)
      Return a FormField object based on the provided field name.
      boolean isMultipar()
      Return true if the HTTP Request contain a multipart form data.
      int size()
      Return the number of items recovered from the data form.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Uploaded

        public Uploaded​(javax.servlet.http.HttpServletRequest request)
                 throws java.lang.Exception,
                        java.io.IOException
        Instantiates a new uploaded object using a HTTP Request
        Parameters:
        request - The HTTP request containing the multipart form data.
        Throws:
        java.lang.Exception - An Exception
        java.io.IOException - An Exception
    • Method Detail

      • isMultipar

        public boolean isMultipar()
        Return true if the HTTP Request contain a multipart form data.
        Returns:
        True if multipart.
      • size

        public int size()
        Return the number of items recovered from the data form.
        Returns:
        The number of recovered items.
      • get

        public FormField get​(java.lang.String fieldName)
        Return a FormField object based on the provided field name.
        Parameters:
        fieldName - - The field name to search.
        Returns:
        FormField object.