- 浏览: 368026 次
- 性别:
- 来自: 深圳
最新评论
-
hijackwust:
最次的方法,没有之一
让一个工程并存jar包不同版本 -
手写白:
...
让一个工程并存jar包不同版本 -
wqsmd1:
连接不会关,怎么弄
Struts2 + JasperReports4 + DB2 Demo -
tntxia:
楼主,怎么没有放keymaker.jar这个包啊
Aqua Data Studio 破解及解决乱码说明 -
mrsea2010:
楼主,按照你的方法,点击联接,我都不能显示出页面,直接报404 ...
Struts2 + JasperReports4 + DB2 Demo
文章列表
主键和外键是把多个表组织为一个有效的关系数据库的粘合剂。主键和外键的设计对物理数据库的性能和可用性都有着决定性的影响。
必须将数据库模式从理论上的逻辑设计转换为实际的物理设计。而主键和外键的结构是这个 ...
firefox_4.0.1_and_firebug-1.7
package com.test.java.util.lang;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
class MyEclipseGen
{
private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digita ...
<textarea onpropertychange="if(value.length>100) value=value.substr(0,100)" name="remark" rows=4 cols=60><textarea>
可追加(append)接口。实现了该接口的类的对象实例具有可向其追加字符或字符序列的能力。希望能够接收Formatter输出的类必须实现该接口。
package com.test;
import java.io.IOException;
public class JavaLangAppendAble implements Appendable
{
StringBuilder str = new StringBuilder(0);
@Override
public Appendable append(char c) throws IOException
...
Test.java
package com.test;
import java.util.Timer;
public class Test
{
public static void main(String[] args)
{
Timer timer = new Timer();
//5000 delay in milliseconds before task is to be executed.
//1000 time in milliseconds between successive task executions.
timer.schedu ...
1.站长下载:http://down.chinaz.com/
2.CSDN下载: http://download.csdn.net
3.站长源码:http://down.cnzz.cn/
4.51源码:http://www.51aspx.com/
5.源码之家:http://www.mycodes.com/
6.源码网:http://www.codepub.com/
7.多多源码:http://www.morecode.net/
8.洪越源代码:http://www.softhy.net/
9.锋网源码:http://www.fwvv.net/
10.代 ...
package com.test.go;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;
import org.springframework.orm.hibernate3.HibernateTemplate;
public class Test
{
public static void main(String[] args)
{
Application ...
Map_iterator & min()
- 博客分类:
- java se
package com.test;
import java.util.HashMap;
import java.util.Map;
public class Test3
{
public String test(Map<String, Integer> temp)
{
Object[] tempArray = temp.values().toArray();
int[] countArray = new int[tempArray.length];
for (int i = 0; i < ...
/* 这里一定要注意配置文件是相对于workSpace为根路径来寻找的 */ BeanFactory factory = new FileSystemXmlApplicationContext("./src/main/resources/hello.xml");
=====
<bean id="greetingService" class="com.springinaction.chapter01.hello.GreetingServiceImpl"> <!-- String --> < ...
spring_in_action_2rd_code
在我的眼中,但凡著名的艺术家在早期都是穷困潦倒的,我国香港特别行政区的著名摄影艺术家陈冠希老师更是如此,陈老师早年拍摄摄影作品的时候,连一台像样的专业相机都没有,可他硬是用一部普通的拍照手机就拍出了近2 ...
http://www.21dianyuan.com/ http://www.21ic.com http://www.3gpp.org http://www.3gpp2.org http://www.51testing.com http://www.agilent.com http://www.agentpp.com http://www.alcatel-lucent.com http://www.alldatasheet.com http://www.altera.com http://www.analog.com http://www.anystandards.com http://www.a ...
单元测试:测试单个对象是否工作正确集成测试:测试多个对象之间,多个子系统之间以及系统环境配置是否工作正确功能测试:测试整个应用是否工作正确性能测试:测试系统的性能验收测试:验证用户是否喜欢我的程序