struts2接受webupload框架图片跟文件办法

版权声明:本文为博主原创文章,请尊重劳动成果,转载注明一下出处。 https://blog.csdn.net/zq1994520/article/details/74820968

struts2还没有中action中不能通过ServletInputStream获取图片流数据,只能通过set方法进行。

private File file;

    public void setFile(File file) {
        this.file = file;
    }

猜你喜欢

转载自blog.csdn.net/zq1994520/article/details/74820968
今日推荐