`
文章列表
Dialog.confirm('警告:真的要删除吗?',function(){});用它的话老提示 Dialog未定义,至今未找到原因。
在java中   当前时间转成秒 Date d=new Date(); long time=d.getTime()/1000; System.out.println(time);         //1307005356   得到是秒          秒数转成时间      Date d1=new Date(1307005344*1000L ); SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); System.out.println(sdf.format(d1 ...
org.jfree.data.general.SeriesException: You are attempting to add an observation for the time period Wed Apr 06 11:49:00 CST 2011 but the series already contains an observation for that time period. Duplicates are not permitted.  Try using the addOrUpdate() method.     at org.jfree.da ...
int you= 23;             // 0 代表前面补充0                   // 4 代表长度为4                   // d 代表参数为正数型                   //String str = String.format("%04d", you);         //0023
DecimalFormat df = new DecimalFormat("0.00"); double d = 123.9078; String db = df.format(d); System.out.println(db); //123.91 会四舍五入
TRUNC函数为指定元素而截去的日期值 TRUNC(date[,fmt])     select trunc(to_date('1970-01-01 08:00:00','yyyy-mm-dd hh24:mi:ss')+time/60/60/24) time from multippp_info  order by  time desc   //截取到日 select trunc(to_date('1970-01-01 08:00:00','yyyy-mm-dd hh24:mi:ss')+time/60/60/24,'dd') time from multippp_info  orde ...
选中结果集,点击右键选  copy to excel 就可导出到一个临时的excel文件 了,如temp001.xls,然后选择 文件- 另存为 保存为我们的文件。   选中结果集,点击右键选  Export Results,选择  html  file  就可导出html文件 了。   选中结果集,点击右键选  Export Results,选择  xml  file  就可导出xml文件 了。   选中结果集,点击右键选  Save Results,在弹出的对话框选择   所有文件,文件名  xxx.txt 即可。   生成csv文件: 执行查询语句,可 ...
java生成的xml. 当XML中含有中文时,在文件会正常显示出来,但是用浏览器打开时,中文显示不正常。 解决方法:    不能使用简单的FileWriter,而应该是使用一个能指定具体输出编码的Writer,在JDK的io包中, OutputStreamWriter可以指定输出编码。   正确的代码如下: java.io.OutputStream out=new java.io.FileOutputStream(fileName);   java.io.Writer wr=new java.io.OutputStreamWriter(out,"UTF-8"); ...
错误一: java.lang.IllegalArgumentException: The 'year' argument must be in range 1900 to 9999.     at org.jfree.date.SpreadsheetDate.<init>(SpreadsheetDate.java:114)     at org.jfree.date.SerialDate.createInstance(SerialDate.java:795)     at org.jfree.data.time.Day.<init>(Day.j ...
<html:text property="localIp" value="${localIp }" styleClass="STYLE3" style="width:200px;" styleId="local_Ip" />          在jsp中<html:text>经java解释后就变成了<input type="text" > 两者是等价的  在jsp页面中之所以要用<html:text>是因为struts结构 ...
在Java开发中,很多时候我们为了方便会直接使用long型来保存时间,可以通过System.currentTimeMillis()或者是java.util.Date.getTime()来获取;取值为当前日期时间与1970-01-01相差的毫秒数;但是在Oracle里面,默认没有直接提供获取当前时间的秒数的相关function,所以要想在SQL里面获得毫秒数,只能自己手动计算下喽,如下:SQL> select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') current_date, (sysdate- to_date('1970-01-01','yyyy- ...
适当的使用索引可以提高数据检索速度,可以给经常需要进行查询的字段创建索引 oracle的索引分为5种:唯一索引,组合索引,反向键索引,位图索引,基于函数的索引 创建索引的标准语法: CREATE INDEX 索引名 ON 表名 (列名)      TABLESPACE 表空间名; 创建唯一索引: CREATE unique INDEX 索引名 ON 表名 (列名)      TABLESPACE 表空间名; 创建组合索引: CREATE INDEX 索引名 ON 表名 (列名1,列名2)      TABLESPACE 表空间名; ...
create user hg identified by hg          --创建用户hg ,密码hg default tablespace hg temporary tablespace temp;     grant connect,resource to hg;    --给用户赋予权限
$("#form" ).validate({ event: "keyup" ,//验证规则 rules:{author:{required:true,//必须字段 minlength:2 //至少两字节 },email:{required:true,email:true //此字段为邮件地址 },url:{required:false,url:true //此字段为网址 },content:{required:true,minlength:4 }},//错误消息 messages:{author: {required: '用户名必须填写' ,minlen ...
1.验证手机号  15010291464    $.validator.methods.tel = function(value, element, param){     var tel = /^(130|131|132|133|134|135|136|137|138|139|150|153|157|158|159|180|187|188|189)\d{8}$/;    if(param==true){         if(!tel.exec(value)){     return false;    }else{     return true;    }}};     2.验 ...
Global site tag (gtag.js) - Google Analytics