`
penghao122
  • 浏览: 362915 次
  • 性别: Icon_minigender_1
  • 来自: 广东珠海
社区版块
存档分类
最新评论
文章列表

全选不全选

    博客分类:
  • JS
一<input type="checkbox" name="checkbox1"><br> 二<input type="checkbox" name="checkbox1"><br> 三<input type="checkbox" name="checkbox1"><br> 四<input type="checkbox" name="checkbox1"& ...
log4j:WARN No appenders could be found for logger (org.springframework.core.CollectionFactory). log4j:WARN Please initialize the log4j system properly. com.huaying.dao.LoginDAO@3a1ec6 Exception in thread "main" org.springframework.jdbc.UncategorizedSQLException: Hibernate opera ...
CDT 下载地址 http://www.eclipse.org/cdt/ C/C++在Eclipse平台下的开发工具.它提供的功能包括:C/C++编辑器(一些基本的功能:语法高亮显示,代码编辑等),C/C++调试器,C/C++ Launcher,剖析器,内容提示,Makefile生成器等

SQLServer分页

public static List getPageCommonUser(int currentPage) throws Exception { Connection conn = null; PreparedStatement prep = null; ResultSet rs = null; List result = new ArrayList(); try { conn = DBTools.getConnection(); int rowCou ...
package onlyfun.caterpillar; public interface IHello { public void hello(String name); } package onlyfun.caterpillar; public class HelloSpeaker implements IHello { public void hello(String name) { System.out.println("Hello, " + name); } } pa ...
package com.spring.event; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; public class Admin { public Admin(){ } private String id = ""; public String getId() { System.out.print(id); return id; } public void setId(String id) { this.id ...
举个例子: 如果有台笔记本电脑需要12V的电流,那直接接在家用的电源220V上是不行的. 那我们会想到用一种转换器能把家用的220V转到12v就可以达到目标了 这转换器的功能用code表示,既要继承家用电源的类,又要实现12V笔记本能安上的接口 总言之,适配器作为一种沟通的桥梁吧,,,呵,我的理解 code 展示 package com.javaeye.patter.adapter; /** * A interface */ public interface Shape { public void Draw(); public void B ...
package com.javaeye.pattern.factory; /** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2002</p> * <p>Company: The9.com</p> * @author Jerry Shen * @version 0.5 */ public class Factory { public Window Crea ...
ewebeditor http://www.ewebeditor.net/ fckeditor http://www.fckeditor.net/ tinymce http://tinymce.moxiecode.com/index.php
JSP制作经验总结2007年01月15日 星期一 14:051、如何混合使用Jsp和SSI #include? 在JSP中可以使用如下方式包含纯HTML: <!--#include file="data.inc"--> 但是如果data.inc中包含JSP CODE ,我们可以使用: <%@include file="data.inc"%& ...
看例子,来这习hibernate 和spring
(1)hibernate警告 Could not obtain connection metadata 运行时报错如下: 2005-12-1 13:29:19 org.hibernate.connection.DriverManagerConnectionProvider configure 信息: using driver: oracle.jdbc.driver.OracleDriver at URL: jdbc:oracle:thin:@localhost:1521:icts 2005-12-1 13:29:19 org.hiberna ...
declare   results CLOB;   p xmlparser.Parser;   document xmldom.DOMDocument;   rootelement xmldom.DOMElement;   stockRecord xmldom.DOMElement;   fieldsSet stockmarket%rowtype;   tempelement xmldom.DOMElement;   textnode xmldom.DOMNode;   tempnode xmldom.DOMNode;   --type ref_cur is ref cursor return ...
--                PACKAGE OF DBMS_SQL 游标执行流程   --   --                      -----------   --                    | open_cursor |   --                      -----------   --                           |   --                           |   --                           v   --                         -----   ...
create or replace procedure add_to_stockmarket (fileName IN varchar2,recordName IN varchar2) as   document xmldom.DOMDocument;--声明文档对象模型   subelement xmldom.DOMElement;--声明元素类型   nodelistStock xmldom.DOMNodeList;   nodelistStockChild xmldom.DOMNodeList;   stock_code char(6);--stock字段   stock_name v ...
Global site tag (gtag.js) - Google Analytics