random
public static double random()
Returns a double value with a positive sign, greater than or equal to 0.0 and less than 1.0. Returned values are chosen pseudorandomly with (approximately) uniform distribution from that range. 
When this method is first called, it creates a single new pseudorandom-number generator, exactly as if by the expression new java.util.Random
This new pseudorandom-number generator is used thereafter for all calls to this method and is used nowhere else. 
This method is properly synchronized to allow correct use by more than one thread. However, if many threads need to generate pseudorandom numbers at a great rate, it may reduce contention for each thread to have its own pseudorandom-number generator. 
Returns:
a pseudorandom double greater than or equal to 0.0 and less than 1.0.
See Also:
Random.nextDouble()
用他产生一个0-1的数,再*1000就成了一个四位的,可能还要取一下整吧!

解决方案 »

  1.   

    public String generateRandom(){
            String fourRandom = "";
            int randomNum = (int)(Math.random()*10000);
            fourRandom = "" + randomNum;
            int randLength = fourRandom.length();
            if(randLength<4){
                for(int i=1; i<=4-randLength; i++)
                    fourRandom = "0" + fourRandom;
            }else{
                fourRandom = "" + randomNum;
            }
            return fourRandom;
        }