- 浏览: 26705 次
- 性别:
最新评论
文章列表
IDEA学习笔记:http://www.youmeek.com/category/software-system/my-intellij-idea/
禅道:http://192.168.100.24:81/zentao/user-login.html
个推:http://docs.getui.com/
CXF生成调用webservice的客户端:http://happyzj.iteye.com/blog/1141076
百度天气预报API:http://apistore.baidu.com/apiworks/servicedetail/112.html
Windows下配置Gi ...
windows下tomcat启动报错
- 博客分类:
- tomcat
今天把linux转windows,然后把3个项目放到tomcat下 报错。
java.lang.OutOfMemoryError: PermGen space
具体的解决方法: 1. 手动设置MaxPermSize的大小 修改 TOMCAT_HOME/bin/catalina.bat(Linux上为catalina.sh)文件, 在echo "using CATALINA_BASE:$CATALINA_BASE"上面加入这一行内容:
Java代码
set JAVA_OPTS=%JAVA_OPTS% -server -XX:PermSize=12 ...
Linux安装Mysql
- 博客分类:
- mysql
RPM方式安装MySQL5.6
a. 检查MySQL及相关RPM包,是否安装,如果有安装,则移除(rpm –e 名称)
Linux下安装JDK
- 博客分类:
- Linnux
1、下载JDK
路径:http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
下载jdk:
[plain] view plaincopy
oracle误删表数据以后的还原方法
- 博客分类:
- 随身笔记
alter table A enable row movement;flashback table A to timestamp systimestamp - interval '30' minute
使用POI导出EXCEL
- 博客分类:
- 随身笔记
/** * 填充导出信息 * @param vo * @param inquiry * @param hetong */ private void fixXunpanVO(XunpanVO vo,MagnetsInquiry inquiry,MagnetsHetong hetong,SysOperator operator){ vo.setSerialNo(inquiry.getSerialNo()); vo.setCreateTime(inquiry.getCreateTime()); vo.setMaoyiType(inquiry.getLanguageType()==1? ...
使用fat jar打包java项目
- 博客分类:
- 随身笔记
安装方法:
1. Eclipse在线更新方法Help > Install New Software > Add,name:Fat Jarlocation:http://kurucz-grafika.de/fatjar
2. Eclipse插件手动安装方法下载地址:http://downloads.sourceforge.net/fjep/net.sf.fjep.fatjar_0.0.27.zip?modtime=1195824818&big_mirror=0将解压出的plugins中的文件复制到eclipse安装目录中的plugins目录下,然后重启eclipse ...
点击发送短信验证码页面的代码
- 博客分类:
- 随身笔记
解压上文的baseCheck,把里面的JS放到页面上
然后在现有的地方加上下面的html
<input type="text" name="mobileCode" id="mobileCode" maxlength="11" style="width:150px;" /> <a class="btn" href="javascript:void(0);" onclick="sendMobileCode();" i ...
1.jaba文件
public class ValidateCodeServlet extends HttpServlet{ /** 验证码图片的宽度 */ private int width = 60; /** 验证码图片的高度 */ private int height = 25; /** 验证码字符个数 */ private int codeCount = 4; // 字符间距 private int x = 0; // 字体高度 private int fontHeight; priva ...
判断该目录下是否存在某个文件
- 博客分类:
- 随身笔记
String dirPath = request.getSession().getServletContext().getRealPath("/template/html"); File path = new File(dirPath); if(!path.exists()) path.mkdirs(); //生成的文件的名字 String indexFileName = id+".html"; //判断是否已经存在该html文件,存在了就直接访问html ,不存 ...
public static String getDate(String rcwUrl){
StringBuffer strBuf = new StringBuffer(); try{ URL url = new URL(rcwUrl); URLConnection conn = url.openConnection(); BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream(),"utf- ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>autoComplete</title><meta http-equiv="Content-Type&quo ...
JS验证只能输入整数或小数
- 博客分类:
- 随身笔记
输入框 onkeyup="value=value.replace(/[^\- \d.]/g,'')"
表单提交时,验证
function checkFloat(val){ var result=val.match(/^[0-9]+\.?[0-9]*$/); return result;//如果格式正确,返回的是输入的值,否则返回null}
//使用
if(!checkFloat(price)){ layer.alert("价格格式不正确,只能为整数或小数!",4); return false; }
后台JSON输出前端JS解析,时间格式问题
- 博客分类:
- JSON
先写个帮助类
public class JsonValueProcessorImpl implements JsonValueProcessor { private String format = "yyyy-MM-dd";
public JsonValueProcessorImpl() { super(); }
public JsonValueProcessorImpl(String format) { super(); this.format = format; }
@Override public Object processArrayValue ...
Ibatis读写CLOB数据
- 博客分类:
- mybaits
转自:http://itjiehun.iteye.com/blog/1139838