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?
Integer.toHexString(yourRandomNumber)doesn't suffice? – Kazekage Gaara Jun 19 '12 at 5:25