Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a scenario in a java web app, where a random hexadecimal value has to be generated. This value should be within a range of values specified by me. (The range of values can be hexadecimal or integer values).

What is the most efficient way to do this> Do I have to generate a random decimal number, and then convert it to hexadecimal? Or can a value be directly generated?

share|improve this question
4  
Integer.toHexString(yourRandomNumber) doesn't suffice? – Kazekage Gaara Jun 19 '12 at 5:25

2 Answers

up vote 5 down vote accepted

Yes, you just generate a decimal value in your range. Something such as:

Random rand = new Random();
int myRandomNumber = rand.nextInt(0x10) + 0x10; // Generates a random number between 0x10 and 0x20
System.out.printf("%x\n",myRandomNumber); // Prints it in hex, such as "0x14"
// or....
String result = Integer.toHexString(myRandomNumber); // Random hex number in result

Hex and decimal numbers are handled the same way in Java (as integers), and are just displayed or inputted differently. (More info on that.)

share|improve this answer
Beat me to it... – Doug Ramsey Jun 19 '12 at 5:27
You just generate a binary number in your range ... – EJP Jun 19 '12 at 8:01

Try this,

String s = String.format("%x",(int)(Math.random()*100));
System.out.println(s);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.