Use the '%' operator
resultingNumber = (r.nextLong() % (maximum - minimum)) + minimum;
By using the '%' operator, we take the remainder when divided by your maximum value. This leaves us with only numbers from 0 (inclusive) to the divisor (exclusive).
For example:
public long randLong(long min, long max) {
return (new java.util.Random().nextLong() % (max - min)) + min;
}