文章列表
public void testRa(){
int[] arr={0,1,2,3,4,5,6,7,8,9};
StringBuffer sb=new StringBuffer();
Random rm=new Random();
for(int i:arr){
int j=rm.nextInt(arr.length-i);
sb.append(arr[j]);
for(int k=0;k<arr.length-1-j;k++){
arr[j+k]=arr[j+k+1];
}
}
System.out.println(sb);
}
这 ...
- 2008-12-21 16:54
- 浏览 1562
- 评论(0)
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.o ...
- 2008-10-19 16:40
- 浏览 764
- 评论(1)
这只是我遇到的 部分,以后慢慢加
1、org.springframework.web.context.WebApplicationContext;这个包没有加进来,
所以要手工把它加进来:spring-web.jar
2、 org/apache/commons/pool/impl/GenericObjectPool
少加一个包 commons-pool-1.3.jar 补上去问题解决。
3、org/springframework/jdbc/support/SQLExceptionTranslator
少加 spring-jdbc.jar
4、java.lang.NoSuchMethodE ...
- 2008-10-19 16:26
- 浏览 755
- 评论(0)
public class User implements java.io.Serializable {
// Fields
private Integer userId;
private String userName;
private String userPwd;
private Date createTime;
// Constructors
/** default constructor */
public User() {
}
/** full constructor */
public User(String userName, String user ...
- 2008-10-19 16:22
- 浏览 1443
- 评论(0)