`
文章列表
函数: to_single_byte(c)转换成半角to_multi_byte(c)转换成全角
查询包含小写的所有数据: select idno from user_info where regexp_like(idno,'[[:lower:]]');  select idno from user_info where regexp_like(idno,'[a-z]');   查询包含大写的所有数据: select idno from user_info where regexp_like(idno,'[[:upper:]]');  select idno from user_info where regexp_like(idno,'[A-Z]'); 
#运行用户 #user somebody; #启动进程,通常设置成和cpu的数量相等 worker_processes 1; #全局错误日志 error_log D:/Tools/nginx-1.10.1/logs/error.log; error_log D:/Tools/nginx-1.10.1/logs/notice.log notice; error_log D:/Tools/nginx-1.10.1/logs/info.log info; #PID文件,记录当前启动的nginx的进程ID pid D:/Tools/nginx-1.10.1/ ...
URL: http://repo.spring.io/libs-release-local/org/springframework/spring/
<project basedir="." default="antwar" name="DTETS"> <target name="prod" description="设置生产环境变量"> <copy file="${basedir}/resources/application.properties.prod" tofile="${basedir}/resources/application.properties" ...
$(function() { //基于Jquery的实现回车键Enter切换焦点 $('input:text:first').focus(); var $inp = $('input:text'); $inp.bind('keydown', function (e) { var key = e.which; if (key == 13) { e.preventDefault(); var nxtIdx = $inp.index(this) + 1; $(":input:t ...
<s:iterator value="projectDetails" var="pd" status="count"> <s:if test="#count.odd||#cout.first"> <tr> </s:if> <td width="30%" class="form_label"><s:property value="projectAttrName ...
随着开发进度项目越来越大, 里面jar文件也越来越多。。 终于遇到了这么一个纠结的问题: 项目突然没法运行了,总是报内存溢出的异常, 没法debug,没法调试。。 找了不少帖子,小小总结一下: ------------------------------------只说怎么改,不要问为什么,行不行看造化了 找到myeclipse的客户端文件夹, 找到eclipse文件夹下的eclipse.ini文件, 1.在第一行加 -clean 2.把里面的数字都加一倍。。。128M→256M,以此类推。 3.进入myeclipse,Windows→perferences→输入jav ...
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"/> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9"/>     需要兼容渲染哪个浏览器,自己查一下,呵呵。
//禁止用F5键 function document.onkeydown() { if ( event.keyCode==116) { event.keyCode = 0; event.cancelBubble = true; return false; } } ...
package com.mzb.chzy.util; public class CommonUtils { /** * 判断是否为数字 * @param str * @return */ public static boolean isNumeric(String str) { for (int i = str.length(); --i >= 0;) { if (!Character.isDigit(str.charAt(i))) { return false; } } return true; } ...
package com.mzb.cozy.util; import java.util.List; public class JspSelectUtil { public static String generateSelectOption(List datas, String defaultValue){ StringBuffer optionStrBuffer = new StringBuffer(); OptionUtil optionUtil = new OptionUtil(); if(datas==null) return " ...
JDK1.4中,这段代码是没有问题的。 Enumeration enum = request.getParameterNames(); while (enum.hasMoreElements()) { l.add((String) enum.nextElement()); }   在升级的时候,在JDK1.6中 会报编译错误Enumeration enum  编译错误   因为在JDK1.6中 已经有enum 关键字了。所以在此只要将enum自定已成自己想要的属性名称就可以了。
可采用如下解决方案: 1 .当用户第一次登录时,把用户添加到一个ArrayList中,再次登录时查看ArrayList中有没有该用户,如果ArrayList中已经存在该用户,则阻止其登录。(说明,为保证该操作在每一次登录时都能执行,最好写在一个filter或listener中),代码参考如下: Java代码   public static List loginInfoList=Collections.synchronizedList(new ArrayList()); //保存所有登录帐户(要作为一个静态成员变量保存)           boolean accou ...

Oracle 日期查询

引用 select * from table tb where tb.createtime<to_date('datetime','YYYY-MM-DD');
Global site tag (gtag.js) - Google Analytics