2019年5月7日

浏览器下载img标签Base64图片

摘要: https://blog.csdn.net/qq_42076140/article/details/82113622 原文地址 阅读全文

posted @ 2019-05-07 17:20 邵海雄 阅读(3394) 评论(0) 推荐(0) 编辑

2016年9月27日

Java定时器TimeTask

摘要: package com.alan.timer; import java.util.Calendar;import java.util.Date;import java.util.Timer;import java.util.TimerTask;/** * Java定时器 * @author 邵海雄 阅读全文

posted @ 2016-09-27 17:41 邵海雄 阅读(919) 评论(0) 推荐(0) 编辑

2016年9月7日

js倒计时

摘要: <!doctype html><html> <head> <meta charset="UTF-8"> <meta name="Keywords" content="关键字,关键字"> <meta name="Author" content="邵海雄"> <meta name="Descriptio 阅读全文

posted @ 2016-09-07 15:41 邵海雄 阅读(181) 评论(0) 推荐(0) 编辑

2016年8月25日

h5语音播放(移动端)

摘要: <!--语音导航 start--> <div style="border:0px solid red;width:100%;height:72px;position:relative;overflow-y: hidden;"> <img src="/static/front/images/voice 阅读全文

posted @ 2016-08-25 15:06 邵海雄 阅读(2126) 评论(0) 推荐(0) 编辑

2016年8月23日

Linux环境下在Tomcat上部署JavaWeb工程

摘要: 本文讲解如何将我们已经编译好的JavaWeb工程在Linux环境下的Tomcat上进行部署,总体上的思路是和Windows下JavaWeb项目部署到tomcat差不多,具体步骤和命令如下。 注:部署之前必须已经在Linux上安装好JDK,具体如何在Linux上安装JDK见:Linux环境下安装JDK 阅读全文

posted @ 2016-08-23 15:41 邵海雄 阅读(8810) 评论(0) 推荐(0) 编辑

2016年8月16日

mysql 分页

摘要: int PAGE_NUM=10;// 一页显示10条记录 int pageNum =1;//当前在第几页 int offset= PAGE_NUM * pageNum - PAGE_NUM; offset=offset<=0?0:offset; int limit=PAGE_NUM;//显示的条数 阅读全文

posted @ 2016-08-16 09:26 邵海雄 阅读(118) 评论(0) 推荐(0) 编辑

2016年8月13日

jfinal 后台文件上传(结合上一篇(h5 图片回显))

摘要: 前端用了jquery.form.js插件异步提交表单 $("#imgForm").ajaxSubmit();//户主头像 /** * * @description 上传户主头像 * @author 邵海雄 * @date 2016年8月12日 上午9:39:26 */ public void hol 阅读全文

posted @ 2016-08-13 10:02 邵海雄 阅读(2084) 评论(0) 推荐(0) 编辑

h5 图片回显

摘要: <form method="post" id="imgForm" action ="/hi/holdHead" enctype="multipart/form-data"> <input type="hidden" id="householdId_img" name="householdId_img 阅读全文

posted @ 2016-08-13 09:54 邵海雄 阅读(844) 评论(0) 推荐(0) 编辑

2016年8月11日

jfinal文件上传与下载

摘要: import com.alibaba.fastjson.JSONObject; import com.jfinal.core.Controller; import com.jfinal.ext.kit.ZipUtil; import com.jfinal.kit.PathKit; import co 阅读全文

posted @ 2016-08-11 15:26 邵海雄 阅读(8923) 评论(0) 推荐(1) 编辑

2016年7月27日

js最近天数

摘要: //七天查询 recent(6); //30天查询 recent(30); //最近天数 var recent=function(arg){ var myDate = new Date(); //获取今天日期 myDate.setDate(myDate.getDate() -parseInt(arg 阅读全文

posted @ 2016-07-27 15:19 邵海雄 阅读(280) 评论(0) 推荐(0) 编辑

导航