搜索到与相关的文章
编程技术

回忆中的经典——猫和老鼠

[img]http://tntxia.iteye.com/upload/picture/pic/10451/26c24b00-4a2b-3a2a-8bbc-a3ca98a90135.gif[/img]灰色的大猫,眼里总是闪着机会主义的光芒,弓着腰在一旁等待机会出击。棕色的小老鼠,总是用挑逗的眼神看你,并且常常在不经意期间玩弄这只大灰猫。他们的名字就叫做Tom和Jerry,世界上最有名的猫和老鼠,也是最长寿的一对———他们已经整整存活了67年。当Willia

系统 2019-08-29 23:11:08 2269

编程技术

表空间uniform size和 autoallocate的区别

看循序渐进和数据库性能优化时进行的测试,记录一下。UNIFORMSIZE的测试SQL>CREATETABLESPACEericDATAFILE2'/u01/app/oradata/orcl/eric01.dbf'SIZE10MAUTOEXTENDOFF3LOGGING4PERMANENT5EXTENTMANAGEMENTLOCALUNIFORMSIZE1M6BLOCKSIZE8K7SEGMENTSPACEMANAGEMENTMANUAL8FLASHBACK

系统 2019-08-29 23:08:12 2269

编程技术

Find CPU Speed and Memory Size on Solaris

FindCPUSpeedandMemorySizeonSolarisAsI’mwritingmythesisI’mrunningtestsonanoldSMPSolarismachine.Obviously,Ineedtoprovidethespecsofthismachineinthepapersothatthereaderscanseemyresultsincontext(iewhyeverythingistakingforever.OnlinuxIw

系统 2019-08-29 22:25:09 2269

编程技术

最简Dialog的实现

系统提供的各种Dialog太复杂!来个最简单的,看图:简单吧!实现:privateDialogdialog;privatevoidshowProgress(){if(dialog==null){dialog=newDialog(this,R.style.Theme_TransparentDialog);//dialog.setContentView(R.layout.progress_dialog);dialog.setContentView(newPro

系统 2019-08-29 22:17:31 2269

各行各业

迭代导出word 文档

Map迭代的使用:Mapmap=newHashMap();Iteratorit=map.entrySet().iterator();while(it.hasNext()){Map.Entryentry=(Map.Entry)it.next();Objectkey=entry.getKey();Objectvalue=entry.getValue();}Jsp页面functionexportWord(){vardata=setData();jQuery.po

系统 2019-08-12 09:27:35 2269

各行各业

3212 K-Nice(水题1)

Thisisasupersimpleproblem.Thedescriptionissimple,thesolutionissimple.Ifyoubelieveso,justreaditon.Orifyoudon't,justpretendthatyoucan'tseethisone.Wesayanelementisinsideamatrixifithasfourneighboringelementsinthematrix(Thoseatthecorne

系统 2019-08-12 09:27:32 2269

Java

java_tomcat_Server at localhost was unable t

错误:ServerTomcatv6.0Serveratlocalhostwasunabletostartwithin45seconds错误提示就是我们限定了部署的时间导致的错误。修改workspace\.metadata\.plugins\org.eclipse.wst.server.core\servers.xml文件。把其中的start-timeout="45"改为start-timeout="120"或者更长,根据不同同学的工程大小来设置。最后重启e

系统 2019-08-12 01:54:38 2269

数据库相关

【DataBase Access】ODBC JDBC (Continued)

IhavefoundsthinterestingfromavideoofJavatechnique.TheoriginoftheODBC.HongLihasasupermarketnamedWal-Mart,LeiZhangalsohasasupermarketnamedRT-Mart.Lidoesn'thavehisownwarehouse,herentssomewarehousesnamedSQLwhichgateare2m*2m.Zhangdoesn

系统 2019-08-12 01:54:20 2269

数据库相关

【SQL语法】系列06:利用ORDER BY排序

默认为升序,如果希望按降序对记录进行排序,可使用DESC关键字。Orders表:CompanyOrderNumberIBM3532W3School2356Apple4698W3School6953例1以字母顺序显示公司名称:SELECTCompany,OrderNumberFROMOrdersORDERBYCompany结果:CompanyOrderNumberApple4698IBM3532W3School6953W3School2356例2以字母顺序显

系统 2019-08-12 01:53:08 2269