@At
public Object zipResource() {
NutMap map = new NutMap();
clearUpload();
map.put("index_background", loadIndexBackground());
map.put("guide_page", loadGuidePage());
map.put("ten_objective_elements", loadObjectiveElements());
map.put("excellence", loadExcellence());
map.put("ten_aia_elements", loadAiaElements());
String zipName = "resource.zip";
zip(Json.toJson(map), zipName);
return map;
}
@At
public Object downResource(){
return null;
}
从downResource转到zipResource
添加回复
请先登陆