`
tenderghost
  • 浏览: 24074 次
  • 性别: Icon_minigender_1
  • 来自: 南京
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论
文章列表
应该是昨天,Java EE 6, GlassFish v3, NetBeans 6.8同时发布了! E文好的可以看这里:http://java.dzone.com/news/java-ee-6-and-netbeans-68 还有这里:http://weblogs.java.net/blog/wvreeven/archive/2009/12/08/glassfish-30-released
This is the scenario that you run Windows as your host operating system and Ubuntu in a VirtualBox, and that you want to access a specific Windows folder from Ubuntu. First you have to make sure that have install Guest Additions. From the VirtualBox's menu go to Devices → Install Guest Additions... ...
    最近做一个数据库初始化工具的时候发现了这个问题,就是在一个Statement中执行一条SQL语句的时候可以正确执行,如果同时执行多条,就会报SQL语法错误,伤透了脑筋。     经过网上查找,发现有两种解决办法:     1、最简单的办法,在MySQL的连接字符串中设置allowMultiQueries参数置为true。     2、在程序中对SQL语句以分号拆分成多条SQL语句,然后使用Statement的addBatch方法,最后executeBatch就行。     结论:第一种方式最简单。     希望对以后遇到此类问题的朋友有所帮助。
Spring 2.5 ships with great support for integration testing through the classes in the org.springframework.test package. These classes allow you to dependency inject your test cases off of your existing Spring configuration, either by using your production Spring configuration file or one you've defi ...
昨天看Eclipse的官方网站,所有可下载的版本都是基于3.4.1的,今天晚上没事,再去看的时候,发现已经变成了3.4.2,赶紧下载下来,看看有什么新东东。 下载地址:http://www.eclipse.org/downloads/ 推荐下载Eclipse IDE for Java EE Developers这个版本,功能齐全,好用,完全可以替代MyEclipse了。 不过这个版本的Release Note我还没找到,那位朋友要是找到了可以给我说一下。
这个应该是Struts 2.1系列中第一个GA的版本,快去下载吧。 到校内的镜像上,速度还是很快的。 http://labs.xiaonei.com/apache-mirror/struts/binaries/ 昨天写的太匆忙,现附上Struts邮件列表中的发布声明: 引用 The Apache Struts group is pleased to announce that Struts 2.1.6 is available as a "General Availability" release. The GA designation is our highest qu ...
    项目中需要动态生成一个统计图形,在统计图上用MAP标签生成图形的tooltip,由于图片是通过AJAX方式加载的,每次的图形都不同,则相应的MAP信息也就不同了,于是问题就出现了:     每次更改图片的MAP时(img.useMap = "#mymap"),在我本机都是没问题的,很流畅,但别人的部分机器上就会出现IE假死的情况,甚至崩溃,很是郁闷,今天到Google了一下,发现确实有这个问题,而且仅限于IE7,摘抄如下: 引用 UseMaps Crash IE When Changed By Shawn Olson Posted on 03.31.08 Dyn ...
用JavaScript调用Excel的ActiveSheet.Pictures.Insert(url)方法在2003版本中还是好好的,可是在2007中就不行了,有人说这是MS的Bug,可MS到现在也没给出个补丁之类的东西,我们只好自己解决了。 使用如下方法: ActiveSheet.Shapes.AddShape(msoShapeRectangle, 40, 80, 140, 50).Fill.UserPicture(url); 不过,在JavaScript中,msoShapeRectangle是未定义的,通过查看Excel枚举常量,得知msoShapeRectangle的值为1,所以在调用之前 ...
2.2.1. How Python's Datatypes Compare to Other Programming Languages An erudite reader sent me this explanation of how Python compares to other programming languages: statically typed language     A language in which types are fixed at compile time. Most statically typed languages enforce this by r ...
Global site tag (gtag.js) - Google Analytics