All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.ipokerface.weixin.request.http.entity.FileEntity Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.ipokerface.weixin.request.http.entity;

import cn.ipokerface.weixin.request.http.ContentType;

import java.io.*;

/**
 * Created by       PokerFace
 * Create Date      2019-12-27.
 * Email:           [email protected]
 * Version          1.0.0
 * 

* Description: */ public class FileEntity implements HttpEntity { private final File file; private final ContentType contentType; public FileEntity(File file) { this(file, ContentType.DEFAULT_BINARY); } public FileEntity(File file, ContentType contentType) { this.file = file; this.contentType = contentType; } @Override public ContentType getContentType() { return contentType; } @Override public long getContentLength() { return this.file.length(); } @Override public InputStream getContent() throws IOException { return new FileInputStream(this.file); } @Override public void writeTo(OutputStream outstream) throws IOException { InputStream instream = new FileInputStream(this.file); try { byte[] tmp = new byte[4096]; int l; while ((l = instream.read(tmp)) != -1) { outstream.write(tmp, 0, l); } outstream.flush(); } finally { instream.close(); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy