`
JaneLan
  • 浏览: 47802 次
  • 性别: Icon_minigender_2
  • 来自: 成都
社区版块
存档分类
最新评论
文章列表
1.keytool -genkey -dname "cn=BeanSoft Studio, ou=Java Software, o=BeanSoft Studio, c=China" -alias beansoft -keypass beansoft -storepass beansoft -validity 365 -keystore .\beansoft 这段命令将会创建一个数字文件放在当前目录的二进制文件beansoft中。该证书的别 ...
1、工厂模式:客户类和工厂类分开。消费者任何时候需要某种产品,只需向工厂请求即可。消费者无须修改就可以接纳新产品。缺点是当产品修改时,工厂类也要做相应的修改。如:如何创建及如何向客户端提供。    2、建 ...
--判断数据库是否存在 if exists(select * from master..sysdatabases where name=N'库名') print 'exists' else print 'not exists' --------------- -- 判断要创建的表名是否存在 if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[表名]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -- 删除表 drop table [dbo].[表 ...
1.实现Comparator接口再实现方法 public class ComparatorAnswer implements Comparator{ /** * 排序方法 */ public int compare(Object arg0, Object arg1) { TSalQuestionarypaper ts1=(TSalQuestionarypaper)arg0; TSalQuestionarypaper ts2=(TSalQuestionarypaper)arg1; //首先比较前面,如果前面相同,则比较后面 int flag=ts1.getI ...
表A记录如下: aID         aNum 1           a20050111 2           a20050112 3           a20050113 4           a20050114 5           a20050115 表B记录如下: bID         bName 1             2006032401 2           2006032402 3           2006032403 4           2006032404 8           2006032408 实验如下: ...
主键生成策略是指 <grnerator class=" native "/> 1、 native        对于 oracle 采用 Sequence 方式,对于MySQL 和 SQL Server 采用identity(自增主键生成机制),native就是将主键的生成工作交由数据库完成,hibernate不管(很常用 ...
1、Oracle8/8i/9i数据库(thin模式)  Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();  String url="jdbc:oracle:thin:@localhost:1521:orcl";  //orcl为数据库的SID  String user="test";  String password="test";  Connection conn= DriverManager.getConnect ...
function selectLanguage(SELECTED_ENCODE,DEFAULT_ENCODE){ if (SELECTED_ENCODE == "null"){     if (DEFAULT_ENCODE == "zh"){     document.getElementById("language").options[0].selected = true;     }else if (DEFAULT_ENCODE == "en"){     document.getElementBy ...
jianli
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { try { String filePath = this.getServletContext().getRealPath("/") + "/Help.chm"; if (req.getSession().getAttribute(Constants.USER_IN_SESSION) == null) { ...
function initMonthLengthValue(){ //重载maxLength方法,只判断NumberField。key:COSSP_JIRA_CS3_611_20091209 Ext.form.NumberField.prototype.size= 2;  //要限制的长度 Ext.form.NumberField.prototype.initValue = function() {     if(this.value !== undefined){         this.setValue(this.value);     }else if(this.el.do ...
public class ConfigurableConstants { protected static final Properties p = new Properties(); protected static void init(String propertyFileName) { InputStream in = null; try { in = ConfigurableConstants.class.getClassLoader() .getResourceAsStream(propertyFileName); if (in != null) ...

ext js length

    博客分类:
Ext.form.TextField 的 maxLength/size 处理的并不是很好 设置了maxLength后还是可以任意输入,国外extjs论坛看到有人的帖子,通过prototype重定义这两个属性,试了一下,很有效 // Textfield ignores size attribute of text.. Ext.form.TextField.prototype.size = 20; Ext.form.TextField.prototype.initValue = function() {     if(this.value !== undefined){        ...
//初始化指针             PointerInit: function() {                 // 读取当前时间                 var date = new Date();                 //时                 var hour = date.getHours();                 //分                 var min = date.getMinutes();                 //秒                 var seconds = date.getSec ...

Clock

    博客分类:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>     <title></title>     <script type="text/javascript" ...
Global site tag (gtag.js) - Google Analytics