View Javadoc
1   package com.foxinmy.weixin4j.http.entity;
2   
3   import java.io.IOException;
4   import java.io.InputStream;
5   import java.io.OutputStream;
6   
7   import com.foxinmy.weixin4j.http.ContentType;
8   
9   public interface HttpEntity {
10  	
11  	ContentType getContentType();
12  
13  	long getContentLength();
14  
15  	InputStream getContent() throws IOException;
16  
17  	void writeTo(OutputStream outstream) throws IOException;
18  }