- 浏览: 176091 次
- 性别:
- 来自: 淄博
最新评论
-
chancong:
很好用,谢谢
oracle 记录被另一个用户锁住 -
河北潇潇:
弹了以后取消掉连当前页面都看不到了。。。
java导出word 超简单 -
summer_java:
何解啊? 怎么修改此类问题。。
Transaction rolled back because it has been marked as rollback-only -
XF银色子弹:
到处html的话是一个html文件和一个files文件夹。导出 ...
java导出word 超简单 -
sunmeilinbbs:
太强了!厉害啊!但是图片怎么导出来呢?
java导出word 超简单
文章列表
//css
#wrap {
position: absolute;
width:500px;
height:200px;
left:50%;
top:50%;
margin-left:-250px; /*设置为宽度的一半*/
margin-top:-100px; /*设置为高度的一半*/
}
<div id="wrap">
<center>内容</center>
</div>
- 2009-03-02 09:23
- 浏览 910
- 评论(0)
今早下楼一看地上湿漉漉的,昨晚应该是下了下雨。到了郊外发现白白的一片。。。甚是壮观 难道郊外下雪了??? 下车后才发现是冰渣...
- 2009-02-19 08:26
- 浏览 712
- 评论(0)
<style type="text/css">
#loading-mask{
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
z-index:20000;
background-color:white;
}
#loading{
position:absolute;
left:45%; ...
- 2009-02-18 14:29
- 浏览 4940
- 评论(0)
String fileName = new String("变电站.doc".getBytes("GBK"),"ISO8859-1");
- 2009-02-18 08:52
- 浏览 3265
- 评论(0)
cell.setEncoding(HSSFCell.ENCODING_UTF_16);
cell.setCellValue("中文");
- 2009-02-17 22:57
- 浏览 2761
- 评论(2)
ActionContext ac = ActionContext.getContext();
ServletContext sc = (ServletContext) ac.get(ServletActionContext.SERVLET_CONTEXT);
String path = sc.getRealPath("/");
- 2009-02-17 15:21
- 浏览 3353
- 评论(0)
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
函数
描述
fn:contains(string, substring)
如果参数string中包含参数substring,返回true
fn:containsIgnoreCase(string, substring)
如果参数string中包含参数substring(忽略大 ...
- 2009-02-17 12:09
- 浏览 4575
- 评论(0)
刚刚接触oracle,在程序中要比较日期,直接比较竟然报文字与格式字符串不匹配。查了下原来才知道要加to_date函数。例:WHERE (rq>= to_date('2008-09-01', 'yyyy.mm.dd')
- 2009-02-17 10:35
- 浏览 2931
- 评论(0)
select * from user_constraints where constraint_name='name'
- 2009-02-13 15:23
- 浏览 1311
- 评论(0)
SQL中的单记录函数
1.ASCII
返回与指定的字符对应的十进制数;
SQL> select ascii(’A’) A,ascii(’a’) a,ascii(’0’) zero,ascii(’ ’) space from dual;
A A ZERO SPACE
--------- --------- --------- ---------
65 97 48 32
2.CHR
给出整数,返回对应的字符;
SQL> select chr(54740) zhao,chr(65) chr65 from dual;
ZH C
-- -
赵 A
3.CONCAT ...
- 2009-02-13 13:25
- 浏览 511
- 评论(0)
function SetCookie(name,value)//两个参数,一个是cookie的名子,一个是值
{
var Days = 365; //此 cookie 将被保存 365 天
var exp = new Date(); //new Date("December 31, 9998");
exp.setTime(exp.getTime() + Days*24*60*60*1000);
document.cookie = name + "="+ escape (value) + ";e ...
- 2009-02-06 22:48
- 浏览 1688
- 评论(0)
此功能实现我觉着有两种方法可行:
一:当用户点击保存密码登录成功后向数据库插入此台机器的IP+登录用户名+密码,下次用户登录时根据IP去数据库查询,反之则删除数据库中的记录。(如果员工知道领导的IP,那。。。呵呵,缺陷啊)
二:利用Cookie
// 存cookie
Cookie user = new Cookie("User_Name", "hsyd");
Cookie pass = new Cookie("Password", "hs ...
- 2009-02-06 15:43
- 浏览 1348
- 评论(0)
HSSFCellStyle cellStyle = wb.createCellStyle();
cellStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy h:mm"));
cell = row.createCell((short)1);
cell.setCellValue(new Date());
cell.setCellStyle(cellStyle);
- 2009-01-29 20:19
- 浏览 1454
- 评论(0)