Yes, or use the overloaded "nextInt" method
// number betwwen 1 y 100 inclusive
Random random = new Random( 10 );
int number = random.nextInt( 100 ) + 1;
From
java.sun.com/.../Random.html
int nextInt(int n)
Returns a pseudorandom, uniformly distributed int value
between 0 (inclusive) and the specified value (exclusive), drawn from
this random number generator's sequence.