- 浏览: 563995 次
- 性别:
- 来自: 北京
最新评论
-
hanmiao:
另外,你的解压方法的方法名的定义改下吧,叫unzipFile( ...
JAVA实现压缩/解压缩zip文件 -
hanmiao:
快乐向日葵 写道cherryzhu 写道你好,我使用这个方法的 ...
JAVA实现压缩/解压缩zip文件 -
快乐向日葵:
cherryzhu 写道你好,我使用这个方法的时候发现了一个错 ...
JAVA实现压缩/解压缩zip文件 -
nodonkey:
thx alot
Cannot find bean org.apache.struts.taglib.html.BEAN in any s -
dl96200:
代码你省略了呀,,,title后面的都给省了。不过也很感谢啦 ...
DOM解析XML例子
文章列表
java 代码
response.getWrite().write("<script>alert("Hello,world!");</script>");
- 2007-02-11 17:55
- 浏览 1539
- 评论(0)
可以传指。
父页面代码:
<%@ page import="java.util.Date" %>
window.showModalDialog("/AAA.do?method=list&time=<%=new Date().getTime() %>&oid="+oid+"&orgId="+orgId,para,
"center:yes;dialogHeight:325px;dialogWidth:590px;toolbar:n ...
- 2006-12-25 19:33
- 浏览 1944
- 评论(0)
如:select to_date('2005-01-01 13:14:20','yyyy-MM-dd HH24:mm:ss') from dual;
原因是SQL中不区分大小写,MM和mm被认为是相同的格式代码,所以Oracle的SQL采用了mi代替分钟。
select to_date('2005-01-01 13:14:20','yyyy-MM-dd HH24:mi:ss') from dual;
二、另要以24小时的形式显示出来要用HH24
select to_char(sysdate,'yyyy-MM-dd HH24:mi:ss') from dual;//mi是分钟
select to_ ...
- 2006-12-24 22:06
- 浏览 17759
- 评论(2)
页面JSP代码:
[html:checkbox property="checkboxValue" /]
Formbean:
private boolean checkboxValue=false;
public boolean isCheckboxValue() {
return checkboxValue;
}
public void setCheckboxValue(boolean checkboxValue) {
...
- 2006-12-20 23:25
- 浏览 1682
- 评论(0)
1. 如何让选中的一行记录高亮显示?
http://topic.csdn.net/t/20050105/09/3699823.html
2. 如何在下拉列表框里选择一个值后跳出新窗口?
http://topic.csdn.net/t/20050107/15/3707444.html
3. 如何在JSP中启动execl?
http://community.csdn.net/Expert/TopicView1.asp?id=4909154
http://community.csdn.net/Expert/TopicView1.asp?id=4685297
4. 两级联动菜单
...
- 2006-12-20 12:39
- 浏览 2551
- 评论(0)
子窗口刷新父窗口的问题
- 博客分类:
- JavaScript
情况:用window.open()打开子窗口时候,如果子窗口要得到父窗口页面的某一个值,有两种办法:第一种将父窗口的那个值保存到formbean中然后在子窗口中用隐藏域得到,第二种就是在子窗口中用window.opener.document.getElementById("").value;
此时在子窗口做了某些操作要刷新父窗口,可以用window.opener.document.location.reload();来刷新父窗口.
注意:有时候用上面的方法刷新父页面的时候会出现个“重试”跟 “取消”的对话框!所以用以下代码可以解决:
window.opener.locatio ...
- 2006-12-14 00:46
- 浏览 3019
- 评论(0)
第一种方式:
[html]
[head][title]取得系统时间[/title][/head]
[body]
[%java.util.Date date=new java.util.Date();%]
现在是:<%=date%>
[/body]
[/html]
运行结果:
现在是:Tue Jul 31 10:32:52 CST 2001
第二种方式:
[%@ page import="java.util.*, ...
- 2006-12-13 17:38
- 浏览 16599
- 评论(1)
new.jsp:
某字段:
[input type="checkbox" name="shiftDesc" value="1"]
注意:shiftDesc为数据库中的某一个属性字段!
FormBean中为普通的setShiftDesc()跟getShiftDesc()
Action.java:
if(form.getShiftDesc()!=null){
opsetShiftDesc("1");//将checkbox置为1
...
- 2006-12-12 17:39
- 浏览 2838
- 评论(0)
//判断输入内容是否为空
function IsNull(){
var str = document.getElementById('str').value.trim();
if(str.length==0){
alert('对不起,文本框不能为空或者为空格!');//请将“文本框”改成你需要验证的属性名称!
}
}
//判断日期类型是否为YYYY-MM-DD格式的类型
function IsDat ...
- 2006-12-09 19:05
- 浏览 5038
- 评论(0)
关于return函数的调用!
- 博客分类:
- JavaScript
在JS代码中要注意如果有if判断必须要return!!!!!!!!!!判断正确就要 return true;判断错误就要return false;
- 2006-12-09 18:57
- 浏览 1747
- 评论(0)
数据库字段在hibernate映射为日期类型,但是一般在formbean中要设置成String类型(formbean通常只有两种类型数据一种为String,另一种就是类类型),所以存在转换问题!
1。从数据库中取数据:Date===>String(比如说转向详细页面的时候):
import java.text.SimpleDateFormat;
String pioDate = new SimpleDateFormat("yyyy-MM-dd").format(eq.getPioDate());
equpForm.setPi ...
- 2006-12-08 00:56
- 浏览 20693
- 评论(3)
C:\Documents and Settings\Administrator>exp
Export: Release 9.2.0.1.0 - Production on 星期四 12月 7 12:52:05 2006
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
用户名: peam
口令:
连接到: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle ...
- 2006-12-07 21:49
- 浏览 3459
- 评论(0)
检查后台没有问题!那只能是前台的事情!一看果然:
function save(){
doucument.form.action="abc.do";
document.form.submit;
}
[input type="button" onclick="save()"]
或者[html:submit property="button1" onclick="save()"/]
...
- 2006-12-07 17:08
- 浏览 1588
- 评论(0)
JS代码如下:
java 代码
function check(){
if (document.equpListForm.code.value == null || document.equpListForm.code.value =="" || document.equpListForm.code.value.length == 0)
{
alert("对不起,请您输入设备编码!");
return ...
- 2006-12-06 19:43
- 浏览 1687
- 评论(0)
前台用Struts标签:[html:file /]
具体代码:
JSP:
[html:form action="/eqPertainDoc.do?method=save" method="post" enctype="multipart/form-data"]文档内容:
[html:file property="docContent" styleClass="formDetailTxt" size="30"/]
[/html:f ...
- 2006-12-06 16:07
- 浏览 1794
- 评论(0)