Package us.monoid.web.mime

Examples of us.monoid.web.mime.MultipartContent


   * Useful if you want to upload files or have tons of form data that looks really ugly in a URL.
   * 
   *
   */
  public static MultipartContent form(FormData... formData) {
    MultipartContent mc = new MultipartContent("form-data", formData);
    return mc;
  }
View Full Code Here


   * Create form content to be sent as multipart/form-data. Useful if you want to upload files or have tons of form data that looks really ugly in a URL.
   *
   *
   */
  public static MultipartContent form(FormData... formData) {
    MultipartContent mc = new MultipartContent("form-data", formData);
    return mc;
  }
View Full Code Here

TOP

Related Classes of us.monoid.web.mime.MultipartContent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.