咕噜咕噜滴太阳 2022-09-02 09:05 采纳率: 0%
浏览 14

terasoluna2asdfasdf

package jp.terasoluna.fw.web.struts.actions;

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

import jp.terasoluna.fw.exception.SystemException;

import org.apache.commons.lang.StringUtils;

public class DownloadFile extends AbstractDownloadObject {

private static final long serialVersionUID = 1461327659352290323L;

/**

protected File file = null;


public DownloadFile(File file) {
    this(null, file);
}


public DownloadFile(String name, File file) {
    super(name, null, null);
    this.file = file;
    if (file == null) {
        throw new SystemException(new IllegalArgumentException(
        "Download content must not be null"),
        NO_DOWNLOAD_CONTENT_ERROR);
    }
    if (StringUtils.isEmpty(getName())) {
        setName(file.getName());
    }
}


@Override
public int getLengthOfData() {
    return (int) file.length();
}


@Override
protected InputStream getStreamInternal() throws FileNotFoundException {
    return new FileInputStream(file);
}

}

  • 写回答

2条回答 默认 最新

  • 燕少༒江湖 2022-09-02 09:11
    关注

    不知道您的问题在哪里?

    评论

报告相同问题?

问题事件

  • 创建了问题 9月2日

悬赏问题

  • ¥15 爬虫爬取网站的一些信息
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥100 栈回溯相关,模块加载后KiExceptionDispatch无法正常回溯了
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含
  • ¥15 麒麟V10桌面版SP1如何配置bonding
  • ¥15 Marscode IDE 如何预览新建的 HTML 文件