package com.ideabobo.util;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.lang.reflect.Field;
import java.sql.Timestamp;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.google.gson.GsonBuilder;
import org.apache.commons.io.FileUtils;
import org.apache.struts2.ServletActionContext;
import org.apache.struts2.dispatcher.SessionMap;
import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.interceptor.ServletResponseAware;
import org.apache.struts2.interceptor.SessionAware;
import com.google.gson.Gson;
import com.ideabobo.service.BaseService;
import com.opensymphony.xwork2.ActionSupport;
public class IdeaAction extends ActionSupport implements SessionAware,
ServletRequestAware, ServletResponseAware {
/**
*
*/
private static final long serialVersionUID = 6587353999198278262L;
public HttpServletResponse response;
public HttpServletRequest request;
public SessionMap<String,Object> session;
public Gson gson = new GsonBuilder().serializeNulls().create();
@Override
public void setServletResponse(HttpServletResponse response) {
// TODO Auto-generated method stub
this.response = response;
}
@Override
public void setServletRequest(HttpServletRequest request) {
// TODO Auto-generated method stub
this.request = request;
}
@Override
public void setSession(Map<String, Object> session) {
this.session = (SessionMap<String, Object>) session;
}
public void render(String mesg){
try {
response.setContentType("text/html;charset=UTF-8");
response.getWriter().print(mesg);
response.getWriter().flush();
response.getWriter().close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void renderJsonpString(String mesg){
Map obj = new HashMap();
obj.put("info", mesg);
String callbackFunctionName = request.getParameter("callback");
try {
response.setContentType("text/html;charset=UTF-8");
response.getWriter().print(callbackFunctionName+"("+gson.toJson(obj)+")");
response.getWriter().flush();
response.getWriter().close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void renderJsonpObj(Object json){
String callbackFunctionName = request.getParameter("callback");
try {
response.setContentType("text/html;charset=UTF-8");
response.getWriter().print(callbackFunctionName+"("+gson.toJson(json)+")");
response.getWriter().flush();
response.getWriter().close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public String encodeGet(String str){
if(str!=null){
try {
str = new String(str.getBytes("iso8859-1"),"utf-8");
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return str;
}
public String getRequestEncode(String key){
String str = request.getParameter(key);
return encodeGet(str);
}
public Object getByRequest(Object model){
//Object model = c.getInterfaces();
Class c = model.getClass();
Map<String,String> map = new HashMap();
Map<String,String[]> parammap = request.getParameterMap();
for(Map.Entry<String, String[]> entry:parammap.entrySet()){
String[] value = entry.getValue();
if(value.length==1){
map.put(entry.getKey(),value[0]);
}
}
Field[] fields = c.getDeclaredFields();
try {
for(int i=0;i<fields.length;i++){
Field field = fields[i];
field.setAccessible(true);
String fname = field.getName();
String mvalue = map.get(fname);
if(mvalue != null && !mvalue.equals("") && !mvalue.equals("null")){
String ftype = field.getType().getSimpleName();
if(ftype.equals("String")){
field.set(model, mvalue);
}else if(ftype.equals("Integer") || ftype.equals("int")){
field.set(model, Integer.parseInt(mvalue));
}else if(ftype.equals("Double")){
field.set(model, Double.parseDouble(mvalue));
}else if(ftype.equals("Timestamp")){
Timestamp timestamp = Timestamp.valueOf(mvalue);
field.set(model,timestamp);
}
}
}
}catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return model;
}
public Object getByRequest(Object model,boolean jsonp){
//Object model = c.getInterfaces();
Class c = model.getClass();
Map<String,String> map = new HashMap();
Map<String,String[]> parammap = request.getParameterMap();
for(Map.Entry<String, String[]> entry:parammap.entrySet()){
String[] value = entry.getValue();
if(value.length==1){
map.put(entry.getKey(),value[0]);
}
}
Field[] fields = c.getDeclaredFields();
try {
for(int i=0;i<fields.length;i++){
Field field = fields[i];
field.setAccessible(true);
String fname = field.getName();
String mvalue = map.get(fname);
if(mvalue != null && !mvalue.equals("") && !mvalue.equals("null")){
String ftype = field.getType().getSimpleName();
if(ftype.equals("String")){
if(jsonp){
field.set(model, encodeGet(mvalue));
}else{
field.set(model, mvalue);
}
}else if(ftype.equals("Integer") || ftype.equals("int")){
field.set(model, Integer.parseInt(mvalue));
}else if(ftype.equals("Double")){
field.set(model, Double.parseDouble(mvalue));
}else if(ftype.equals("Timestamp")){
Timestamp timestamp = Timestamp.valueOf(mvalue);
field.set(model,timestamp);
}
}
}
}catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return model;
}
@Resource
private BaseService baseService;
/*******************************上传相关属性************************/
private File file; //上传的文件
private String fileFileName; //文件名称
private String fileContentType; //文件类型
public String uploadP(){
String realpath = ServletActionContext.getServletContext().getRealPath("/upload");
System.out.println("realpath: "+realpath);
String fname = "";
if (file != null) {
if(fileFileName!=null && fileFileName.contains(".")){
fname = UUID.randomUUID()+fileFileName.substring(fileFileName.lastIndexOf("."),fileFileName.length());
}else{
fname = UUID.randomUUID()+".jpg";
}
File savefile = new File(new File(realpath), fname);
if (!savefile.getParentFile().exists())
savefile.getParentFile().mkdirs();
try {
FileUtils.copyFile(file, savefile);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return fname;
}
public File getFile() {
return file;
}
public void setFile(File file) {
this.file = file;
}
public String getFileFileName() {
return fileFileName;
}
public void setFileFileName(String fileFileName) {
this.fileFileName = fileFileName;
}
public String getFileContentType() {
return fileContentType;
}
public void setFileContentType(String fileContentType) {
this.fileContentType = fileContentType;
}
/*******************************上传相关属性************************/
final String prefix="wct_";
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
(1)设计内容 本项目的面向对象为教学与学习《数据结构与算法》的老师、学生。目的是鼓励学生使用方便快捷的微信小程序,随时随地的进行课程的复习。 学生账户主要功能如下: a)用户登陆、退出 b)“我的”模块:个人信息设置、答题情况统计、错题记录、收藏题库、积分等。 c)“章节练习”模块:根据章节或整门课程进行题目的练习,可选择收藏题库。 d)“闯关答题”模块:可选择就每章或整门课程进行难易度由低到高的闯关答题练习。 教师账户主要功能如下: a)用户登陆、退出 b)“题目发布”模块:可发布题目、编辑题目、删除题目。 c)“题目统计”模块:可按章节统计各章的答题情况、错题率 d)“学习记录”模块:可按班级查看每位同学的做题记录、积分情况、积分排名 e)“我的”模块:个人信息设置、班级设置、名单录入
资源推荐
资源详情
资源评论
收起资源包目录
“数据结构与算法”闯关答题微信小程序的设计与实现+毕业论文 (1426个子文件)
IdeaAction.class 18KB
WehallAction.class 13KB
BaseServiceImp.class 11KB
HttpClientTools.class 11KB
StringUtil.class 9KB
GoodAction.class 8KB
ShijuanAction.class 7KB
NoticeAction.class 6KB
ChooseAction.class 6KB
GoodServiceImp.class 6KB
ShijuanServiceImp.class 5KB
NoticeServiceImp.class 5KB
TousuServiceImp.class 5KB
ReplayServiceImp.class 5KB
Good.class 5KB
ChooseServiceImp.class 5KB
PostsServiceImp.class 5KB
UserServiceImp.class 5KB
TypeServiceImp.class 5KB
Getui.class 4KB
UserAction.class 4KB
GetNowTime.class 4KB
User.class 4KB
ReplayAction.class 3KB
TousuAction.class 3KB
PostsAction.class 3KB
CopyFile.class 3KB
Choose.class 3KB
IndexAction.class 2KB
Posts.class 2KB
Shijuan.class 2KB
Chengji.class 2KB
Replay.class 2KB
DownloadAction.class 2KB
Notice.class 2KB
Page.class 1KB
Type.class 988B
BaseService.class 919B
GoodService.class 831B
ShijuanService.class 713B
TousuService.class 709B
ReplayService.class 703B
NoticeService.class 703B
Page2.class 574B
ChooseService.class 562B
PostsService.class 555B
TypeService.class 548B
UserService.class 548B
UploadAction.class 521B
.classpath 1KB
org.eclipse.wst.common.component 480B
org.eclipse.wst.jsdt.ui.superType.container 49B
jquery.mobile-1.4.5.css 234KB
jquery.mobile.inline-svg-1.4.5.css 222KB
jquery.mobile.min.css 216KB
jquery.mobile-1.4.5.min.css 203KB
jquery.mobile-1.4.5.min.css 203KB
jquery.mobile-1.4.3.min.css 202KB
jquery.mobile.inline-svg-1.4.5.min.css 191KB
jquery.mobile.flatui.css 163KB
jquery.mobile.flatui.css 163KB
jquery.mobile.inline-png-1.4.5.css 146KB
jquery.mobile.icons-1.4.5.css 126KB
jquery.mobile.icons.min.css 124KB
jquery.mobile.icons-1.4.5.min.css 124KB
jquery.mobile.skyd-1.4.5.css 120KB
jquery.mobile.external-png-1.4.5.css 119KB
jquery.mobile.inline-png-1.4.5.min.css 115KB
jquery.mobile.structure-1.4.5.css 89KB
jquery.mobile.external-png-1.4.5.min.css 89KB
jquery.mobile.skyd-1.4.5.min.css 80KB
jquery.mobile.structure-1.4.5.min.css 67KB
theme-classic.css 67KB
easyui.css 34KB
easyui.css 34KB
easyui.css 34KB
easyui.css 32KB
easyui.css 32KB
easyui.css 29KB
jquery.mobile.theme-1.4.5.css 19KB
swiper-3.3.1.min.css 17KB
jquery.mobile.theme-1.4.5.min.css 12KB
datagrid.css 5KB
datagrid.css 5KB
datagrid.css 5KB
datagrid.css 4KB
datagrid.css 4KB
datagrid.css 4KB
tabs.css 4KB
tabs.css 4KB
tabs.css 4KB
tabs.css 4KB
tabs.css 4KB
tree.css 4KB
tree.css 4KB
tree.css 4KB
tree.css 4KB
tree.css 4KB
tree.css 4KB
tabs.css 3KB
共 1426 条
- 1
- 2
- 3
- 4
- 5
- 6
- 15
资源评论
code.song
- 粉丝: 982
- 资源: 1108
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- Swift语言教程:从基础语法到高级特性的全面讲解
- 常用工具合集(包括汉字转拼音工具、常用数据格式相互转换工具、尺寸相关的工具类).zip
- Delphi编程教程:从入门到精通Windows应用程序开发
- 视觉化编程入门指南:Visual Basic语言教程及其应用领域
- 纯代码实现的3d爱心.zip学习资料语言
- 儿童编程教育中Scratch语言的基础教学及实战示例
- 批量文件编码格式转换工具.zip学习资料
- 在不同操作系统下编译Android源码需要更改一些Android源码的配置项,脚本用于自动化更改配置项.zip
- 基于vue3的春节烟花许愿代码.zip学习资料
- Apache Kafka 的 Python 客户端.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功