Package com.foxinmy.weixin4j.http.entity
Interface HttpEntity
-
- All Known Implementing Classes:
ByteArrayEntity
,FileEntity
,FormUrlEntity
,MultipartEntity
,StringEntity
public interface HttpEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputStream
getContent()
long
getContentLength()
ContentType
getContentType()
void
writeTo(OutputStream outstream)
-
-
-
Method Detail
-
getContentType
ContentType getContentType()
-
getContentLength
long getContentLength()
-
getContent
InputStream getContent() throws IOException
- Throws:
IOException
-
writeTo
void writeTo(OutputStream outstream) throws IOException
- Throws:
IOException
-
-