`
liurenfeng1815
  • 浏览: 4524 次
  • 性别: Icon_minigender_1
  • 来自: 郑州
最近访客 更多访客>>
文章分类
社区版块
存档分类
文章列表
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); } 这 ...
<?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 ...
这只是我遇到的 部分,以后慢慢加 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 ...
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 ...
Global site tag (gtag.js) - Google Analytics