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

cloud.agileframework.common.util.file.ResponseFile Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package cloud.agileframework.common.util.file;

import com.google.common.collect.Maps;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.util.Map;

/**
 * @author 佟盟 on 2018/11/6
 */
public class ResponseFile {
    private String fileName;
    private String contentType;
    private InputStream inputStream;
    private Map head = Maps.newHashMap();
    private boolean isDownload;

    public ResponseFile(String fileName, Map head, InputStream inputStream, boolean isDownload) {
        this.fileName = fileName;
        this.inputStream = inputStream;
        this.isDownload = isDownload;
        this.head = head;
    }

    public ResponseFile(String fileName, String contentType, InputStream inputStream, boolean isDownload) {
        this.fileName = fileName;
        this.contentType = contentType;
        this.inputStream = inputStream;
        this.isDownload = isDownload;
    }

    public ResponseFile(String fileName, String contentType, InputStream inputStream) {
        this(fileName, contentType, inputStream, true);
    }

    public ResponseFile(String fileName, String contentType, File file) throws FileNotFoundException {
        this(fileName, contentType, new FileInputStream(file));
    }

    public ResponseFile(String fileName, File file) throws FileNotFoundException {
        this(fileName, null, new FileInputStream(file));
    }

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public String getContentType() {
        return contentType;
    }

    public void setContentType(String contentType) {
        this.contentType = contentType;
    }

    public InputStream getInputStream() {
        return inputStream;
    }

    public void setInputStream(InputStream inputStream) {
        this.inputStream = inputStream;
    }

    public boolean isDownload() {
        return isDownload;
    }

    public void setDownload(boolean download) {
        isDownload = download;
    }

    public Map getHead() {
        return head;
    }

    public void setHead(Map head) {
        this.head.putAll(head);
    }

    public void setHead(String key, String value) {
        this.head.put(key, value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy