cn.khthink.easyapi.factory.request.FileRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EasyApi Show documentation
Show all versions of EasyApi Show documentation
A RESTFUL Framework for JavaWeb
The newest version!
package cn.khthink.easyapi.factory.request;
import cn.khthink.easyapi.action.RequestData;
import cn.khthink.easyapi.kit.io.FileKit;
import com.alibaba.fastjson.JSONObject;
import javax.servlet.http.HttpServletRequest;
/**
* 文件上传请求转换
*
* @author kh
*/
public class FileRequest implements RequestData, FileKit {
@Override
public JSONObject getDatas(HttpServletRequest request) {
return uploadFile(request);
}
}