String contentType = method.getResponseHeader("content-type").getValue();
System.out.println(contentType);
ByteArrayDataSource ds = new ByteArrayDataSource(in, contentType);
MimeMultipart mimeMultipart = new MimeMultipart(ds);
Assert.assertEquals(mimeMultipart.getCount(), 3);
method.releaseConnection();
}
@Test
public void testGet() throws Exception