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

I would like to create an array of 20 random bytes.

Very easy but I am kind of having a slow day.

Thanks,

share|improve this question

3 Answers

up vote 27 down vote accepted

Try the Random.nextBytes method:

byte[] b = new byte[20];
new Random().nextBytes(b);
share|improve this answer

Let me guess - generating a salt for the Android licensing check maybe? :-)

My second hit for this search may also be of use: http://www.random.org/bytes/

share|improve this answer
except I believe the Java byte only has a range of -128 to 127 while random.org generates 0 to 256? – Turbo Feb 7 at 20:02

I use an Excel Function =round(rand()*(-128-128)+128,0). Then I convert them to text using a Paste Special, so that I could keep an external record of the array.

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.