-
TIJ英文原版读物阅读之旅——Chapter Eight:Polymorphism
TIJ英文原版书籍阅读之旅——ChapterEight:PolymorphismThetwist|_Method-callbindingConnectingamethodcalltoamethodbodyiscalledbinding.Whenbindingisperformedbeforetheprogramisrun(bythecompilerandlinker,ifthereisone),i...
143
热度 -
Android荧幕支持-from development center
Android屏幕支持---fromdevelopmentcenterSupportingMultipleScreensQuickviewAndroidrunsondevicesthathavedifferentscreensizesanddensities.Thescreenonwhichyourapplicationisdisplayedcanaffectitsuserinterface.Th...
138
热度 -
Managing the Activity Lifecycle-Stopping and Restarting an Activity
ManagingtheActivityLifecycle---StoppingandRestartinganActivity原文地址:https://developer.android.com/training/basics/activity-lifecycle/stopping------------------------------------------------------------...
1708
热度 -
swfobject的应用
swfobject的使用 1swfobject可以将swf文件嵌入到网页内,它是一个js文件,可以从这里下载:http://code.google.com/p/swfobject/ ? 2swfobject使用很简单,只要在网页<head></head>里加入对它的引用就可以使用了: ? <scripttype="text/javascript"src="swfobj...
208
热度 -
javascript 权威指南 学习札记1
javascript权威指南学习笔记1 ? Ifyouattempttoreadthevalueofanundeclaredvariable, JavaScriptwillgenerateanerror.Ifyouassignavaluetoavariablethatyou havenotdeclaredwithvar ,JavaScriptwillimplicitlydeclarethat va...
235
热度 -
IE与firefox兼容有关问题
IE与firefox兼容问题 1、Event的问题在ie中我们可以直接使用event变量,但是在firefox下由于event是局部变量,firefox下我们可以事件绑定到元素上例如<inputtype="button"onclick="doEvent(event)">为了同时兼容ie和firefox通常在函数种通过以下代码获得事件。vartheEvent=window.event||...
258
热度 -
BeanFactory种
BeanFactory类 ? /* *Copyright2002-2010theoriginalauthororauthors. * *LicensedundertheApacheLicense,Version2.0(the"License"); *youmaynotusethisfileexceptincompliancewiththeLicense. *Youmayobtainacopyoft...
332
热度 -
js兑现 鼠标悬浮 扩大 缩放 expand、shrink效果
js实现鼠标悬浮扩大缩放expand、shrink效果 <!DOCTYPEhtml> <htmllang="en"dir="ltr"> <head> <title>Pricingandsignup|CannyBill</title> <metacharset=utf-8> <!--[if!IE6]><!...
1642
热度 -
fckeditor 2.6 施用总结
fckeditor2.6使用总结 最近写个blog用java用到了富文本编辑器,本来是用xheditor但是发现上传图片实在是麻烦。还是改用fckeditor。 直接来步骤: 1、下载地址https://sourceforge.net/projects/fckeditor/files/FCKeditor.Java/2.6/ ?????直接下载这两个fckeditor-java-demo-2.6.w...
402
热度 -
Richfaces 着重点技术精讲
Richfaces重点技术精讲 转载richfaces精讲 http://hintcnuie.iteye.com/blog/127309 ? 关键字:ajax4jsfrichfaces总结 AjaxcomponentsattributeshelpRichFacestoexposeitsfeatures.Mostoftheattributeshavedefaultvalues.Thus,youc...
456
热度 -
鼠标移下去显示菜单
鼠标移上去显示菜单 if(typeofdocument.attachEvent!='undefined'){ window.attachEvent('onload',init); document.attachEvent('onmousemove',moveMouse); document.attachEvent('onclick',checkMove);} else{ window.addEv...
400
热度 -
IE和firefox兼容有关问题
IE和firefox兼容问题 1、Event的问题在ie中我们可以直接使用event变量,但是在firefox下由于event是局部变量,firefox下我们可以事件绑定到元素上例如<inputtype="button"(event)">为了同时兼容ie和firefox通常在函数种通过以下代码获得事件。vartheEvent=window.event||e;varsrcElement=...
151
热度 -
jQuery1.7系列3: jQuery延迟列表(Deferred)
jQuery1.7系列三:jQuery延迟列表(Deferred) ??????????声明:写博客,是对自身知识的一种总结,也是一种分享,但由于作者本人水平有限,难免会有一些地方说得不对,还请大家友善?指出,或致电:tianzhen.chen0509@gmail.com ???????????关注:国内开源jQuery-UI组件库:Operamasks-UI ????...
286
热度 -
分享50个使您成为高级javascript开发者的jQuery的代码开发技巧
分享50个使你成为高级javascript开发者的jQuery的代码开发技巧 英文:50 jQuerySnippetsThatWillHelpYouBecomeABetterJavaScript Developer ? 1.创建一个嵌套的过滤器 .filter(":not(:has(.selected))")//去掉所有不包含class为.selected的元素 2.重用你的元素查询 va...
230
热度 -
IE和Firefox的兼容有关问题之javascript
IE和Firefox的兼容问题之javascript 在用js得到父元素时,发现parentElement只能在IE下使用,而只有parentNode才是IE和FF都通用的,IE真是让人头大,在此特收集其它的一些js兼容性差异:1、Event的问题在ie中我们可以直接使用event变量,但是在firefox下由于event是局部变量,firefox下我们可以事件绑定到元素上例如<inputt...
248
热度 -
WebLogic10内存储器溢出及设置虚拟内存方法
WebLogic10内存溢出及设置虚拟内存方法 调整weblogic虚拟内存暂时我知道的有两种方法: ? ? 第一种: 改正方法:-Xms256m-Xmx256m-XX:MaxNewSize=256m-XX:MaxPermSize=256m 更改的方式如下: F:\bea\user_projects\domains\base_domain\bin对文件:startWeblogic.cmd中增加: ...
496
热度 -
IE与FIREFOX的兼容有关问题
IE与FIREFOX的兼容问题 Event的问题 在ie中我们可以直接使用event变量,但是在firefox下由于event是局部变量,firefox下我们可以事件绑定到元素上例如<inputtype="button"(event)">??为了同时兼容ie和firefox通常在函数种通过以下代码获得事件。vartheEvent=window.event||e;varsrcElem...
185
热度 -
SFTP下传和上载
SFTP上传和下载 维护一个旧项目(eJMS),先前从JDK1.3升级到1.5,后来还要从FTP转换到SFTP 转SFTP用了一个开源的jftp.jar包支持,download的代码 publicbyte[]downloadFile(StringremoteDir,StringfileName){ Sessionsession; Channelchannel; JSchjsch=newJSc...
334
热度 -
no boundary was found
noboundarywasfound! IamtryingtosendsomeparametersandafiletotheserverusingCommonsHTTPClient(V3.1).OntheserverendIamusingCommonsfileupload(V1.1.1.1)togetparametersandfile.Iamgettingfollowingexceptionvie...
708
热度 -
jQuery源码分析―二代码整体结构与核心方法
jQuery源码分析―2代码整体结构与核心方法 该内容转自http://nuysoft.iteye.com/blog/1182087,笔者做了部分修改 ? 去除掉jQuery变量和扩展方法,先看以下精简代码 ? ? (function(window,undefined){ //构造jQuery对象 varjQuery=(function(){ //以下定义了内部变量 //Definealoc...
255
热度