上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页
摘要: select utl_raw.cast_to_varchar2('C4e3') from dual --你好select utl_raw.cast_to_raw('你好') from dual --C4e3--asc码和字符之间的转换 阅读全文
posted @ 2010-01-29 15:17 0707 阅读(209) 评论(0) 推荐(0) 编辑
摘要: import java.net.URLDecoder;import java.net.URLEncoder;class Noname1{ public static void main(String[] args) throws java.io.UnsupportedEncodingException {String aa = "%D2%A6%D0%A2%BB%D4"; //姚孝辉URLDecoder url = new URLDecoder();String bb =new URLDecoder().decode(aa,"GB2312");String 阅读全文
posted @ 2010-01-29 14:59 0707 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 我是去年大学毕业的,软件工程专业,从武汉一个三流的一本学校出来的。考研的分数出来后,我知道我考不上了,所以第二天我就出去找工作,我还很清楚的记得每次在熙熙攘攘的招聘会被人流推来推去,还清楚的记得招聘人员面前一堆厚厚的简历。因为准备考研的缘故,一个web程序员工作所需要的技能我几乎一点都不会,那段时间真的很难熬,我有时候都会有一种想法:如果哪个公司愿意给我机会,我不要钱也可以做。 后来,我被一个无锡的公司要了,1K8的工资,虽然很寒酸,我觉得还是比最坏的情况要好多了。在无锡呆了一个月,那一个月,我每天下班都很努力的学习,后来我面试通过,被调到武汉的分公司。主要是做财务公司的业务软件。用到的... 阅读全文
posted @ 2010-01-28 17:18 0707 阅读(163) 评论(0) 推荐(0) 编辑
摘要: import java.util.*;class A{public static void main(String args[]){String[] a = new String[10000];for(int i=0;i<10000;i++){a[i]=""+i;} a[0]="nimabi";a[9999]="nimabi";Set b = new HashSet();long t1 = System.currentTimeMillis(); for(int i=0;i<10000;i++){ if(!b.add(a[i 阅读全文
posted @ 2009-12-16 22:43 0707 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 1.window.open(url,'资金计划项超支提醒','width='+(window.screen.availWidth-10)+',height='+(window.screen.availHeight-30)+ ',top=0,left=0,resizable=yes,status=yes,menubar=no,scrollbars=yes');2.window.open 弹出新窗口的命令; 'page.html' 弹出窗口的文件名; 'newwindow' 弹出窗口的名字(不是文件名) 阅读全文
posted @ 2009-12-08 10:31 0707 阅读(9814) 评论(2) 推荐(1) 编辑
摘要: 1.演示:http://www.tangusoft.com/Demo/main.html2.与J2EE交互:http://blog.csdn.net/xinem/archive/2008/12/04/3446917.aspx http://blog.csdn.net/afeilxc/archive/2008/10/15/3079350.aspx3.教程下载:http://space.flash8.net/bbs/thread-335652-1-1.html 阅读全文
posted @ 2009-12-07 20:36 0707 阅读(132) 评论(0) 推荐(0) 编辑
摘要: style='mso-number-format:"/@"'mso-number-format:"0"NO Decimalsmso-number-format:"0/.000"3 Decimalsmso-number-format:"/#/,/#/#0/.000"Comma with 3 decmso-number-format:"mm//dd//yy"Date7mso-number-format:"mmmm/ d/,/ yyyy"Date9mso-numbe 阅读全文
posted @ 2009-12-02 16:47 0707 阅读(144) 评论(0) 推荐(0) 编辑
摘要: function mm(y,m) { return (new Date(y,m+1,0)).getDate(); } alert("2001年二月的天数是:"+mm(2001,1));//document.write(new Date(2009, 4, 1)); //2009年5月的第1天(1月的值是0),2009年5月1日document.write(new Date(2009, 5, 0)); //2009年6月的第0天,也就是2009年5月的最后一天 阅读全文
posted @ 2009-12-01 17:48 0707 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1.document和document.all参见http://www.w3school.com.cn/htmldom/dom_obj_document.asp 如果与a,form对象,image对象,applet,input对象相对应的html标记中设定了name性质,它的值将被用作document对象的属性名,用来引用相应的对象,其他的对象则不可以。例如 <div id="aa">123456</div> <input type="button" value="这里用 document 就出错" on 阅读全文
posted @ 2009-11-26 23:34 0707 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 最近在做定义元素顺序的时候,用到z-index属性,中间出了点小插曲,所以整理了一些资料给大家分享。希望对z-index属性和用法还不太了解的朋友有一定的帮助。z-index定义:名称:z-index分类:定位简述:设置对象的层叠顺序概述:z-index是设置对象的层叠顺序的样式。该样式只对position属性为relative或absolute的对象有效。这里的层叠顺序也可以说是对象的“上下顺序”。它是一组css定位元素中的一元,要配合position使用.可能的值值 描述auto 默认。堆叠顺序与父元素相等。number 设置元素的堆叠顺序。提示和注释注释:元素可拥有负的 z-index 阅读全文
posted @ 2009-11-24 22:49 0707 阅读(230) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页