- 浏览: 436836 次
- 性别:
最新评论
-
nianhua2008:
你好,请问哪个cocos版本可以读取cbx文件?
Cocos3dx入门 -
ihic11:
我的为什么Receive.jsp一直有乱码?请帮忙
网银在线支付注意事项 -
奔跑的蓝猫:
楼主你好!请问这两个文件怎么使用啊?
楼主能把源代码发给我下吗 ...
简易视频聊天 -
wx_hello:
不错。。学习了。。
jquery解析xml -
ocaicai:
圣人啊,救星啊,我被这个问题折磨得蛋疼!对了,我在google ...
struts2+urlrewrite
文章列表
1、ActionMapping
private String name;
private String namespace;
private String method;
private String extension;
private Map params;
private Result result;
2、interface Result
唯一的方法:
public void execute(ActionInvocation invocation) throws Exception;
struts2的实现类:
StrutsResultSupport
- 2009-11-28 22:36
- 浏览 850
- 评论(0)
示例:
int pos = str.indexOf(regx)
if(pos != -1){
alert("已包含");
}else{
alert("未包含");
}
函数search用法一样
- 2009-11-27 16:34
- 浏览 3092
- 评论(0)
1、页面,显示分页工具栏
<jsp:include page="pageTool.jsp">
<jsp:param name="counts" value="<%=resultList.size() %>"/>
<jsp:param name="limit" value="<%=limit %>"/>
<jsp:param name=" ...
- 2009-11-27 13:04
- 浏览 897
- 评论(0)
public class ReplaceUrl {
static String s = "<DIV style='FONT-SIZE: 12px; MARGIN: 0px auto; COLOR: #666; HEIGHT: auto; TEXT-ALIGN: center'><a style='COLOR: #666' href='#'>Home page</a> - <a style='COLOR: #666' href='#'>Add to Favorites</a> - <a style=' ...
- 2009-11-26 09:29
- 浏览 601
- 评论(0)
1、消息文本域,限制字数不能多于300
<textarea cols="50" rows="8" name="message" id="message" maxlength="300" onkeyup="return isMaxLen(this)"></textarea>
2、js,效果是:当输入的字数多于300时自动删除
<script type="text/javascript">
function isM ...
- 2009-11-26 09:23
- 浏览 2630
- 评论(0)
1、导入依赖jar包
2、配置web.xml
<filter>
<filter-name>UrlRewriteFilter</filter-name>
<filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class>
<init-param>
<param-name>confPath</param-name>
...
- 2009-11-26 09:19
- 浏览 835
- 评论(0)
<script type="text/javascript">
function fillOrderForm(addr_id){
if(addr_id != ""){
BuyAddress. getRaddrById(addr_id,setData);
}
else{
document.
orderForm .reset();
}
}
function setData(map){
document.getElementById('contac ...
- 2009-11-24 16:42
- 浏览 1413
- 评论(0)
http://dev.mysql.com/doc/refman/5.1/zh/index.html
- 2009-11-20 17:49
- 浏览 1205
- 评论(0)
格式化时间——精确到毫秒
- 博客分类:
- 综合技术
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmssSSS");
- 2009-11-18 12:35
- 浏览 1662
- 评论(0)
熟悉UML建模,熟练掌握Rational Rose
有Linux平台开发经验
掌握一种AJAX框架(Dojo, JQUERY,Prototype等);
Web Service(SOAP)开发;了解webservice、jms、SOA、ESB系统交互框架
精通Resin
Oracle数据库编程
EJB 编程
了解并掌握 Weblogic,JBOSS,WebSphere 等应用服务器开发。
RATIONAL ROSE , POWERDESIGNER 等分析、设计工具
熟悉 CVS 等版本控制工具,vss,cvs,svn至少熟悉一个,
熟悉Jasper Report进行报表开发 ...
- 2009-11-16 22:52
- 浏览 722
- 评论(0)
1. Oracle,随机查询20条
select * from
(
select * from 表名
order by dbms_random.value
)
where rownum <= 20;
2.MS SQL Server,随机查询20条
select top 20 * from 表名order by newid()
3.My SQL:,随机查询20条
select * from 表名 order by rand() limit 20
- 2009-11-15 20:17
- 浏览 1229
- 评论(0)
1、hql
select ib.id,ib.question,ic.itemClassName from ItemBank ib,ItemClass ic where ib.questionClass=ic.id
2、查询的结果是以一个个Object[]数组存放在List中,显示代码如下:
List list = ibm.getItemBank(new BaseParams());
for (int i = 0; i < list.size(); i++) {
Object[] obj = (Object[])list.get(i);
System.out.println( ...
- 2009-11-15 11:48
- 浏览 1037
- 评论(0)
1、页面
<s:select list="itemClasses" listKey="id" listValue="itemClassName" label="题目所属类别" headerKey="0" headerValue="请选择题目所属类别" ></s:select>
2、ItemClass.java为普通的JavaBean
属性:
private Long id;
private String itemClassName;
private ...
- 2009-11-14 21:41
- 浏览 2497
- 评论(0)
select * form user where instr(user_name, '石') > 0 and 1+1
- 2009-11-09 13:40
- 浏览 845
- 评论(0)
为表指定列创建唯一索引
alter table member_user addconstraint re_unique uniqueclustered(login_name)
- 2009-11-08 11:54
- 浏览 2333
- 评论(0)