Package org.jrest4guice.sample.contact.test

Source Code of org.jrest4guice.sample.contact.test.TestUpload

package org.jrest4guice.sample.contact.test;
import java.io.File;

import org.jrest4guice.client.JRestClient;

public class TestUpload {

  /**
   * @param args
   */
  public static void main(String[] args) {
    JRestClient client = new JRestClient();
    try {
      Object result = client.uploadFiles(
          "http://sample.snifast.com/full/fileUpload", null,
          new File[] { new File("F:\\KuGou\\陈倩倩 - 婴儿.mp3"),
              new File("F:\\KuGou\\wendy.jpg") });
      System.out.println(result);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
}
TOP

Related Classes of org.jrest4guice.sample.contact.test.TestUpload

TOP
Copyright © 2018 www.massapi.com. 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.