Java Best practices
Thursday, 31 March 2011
Conversion from decimal to binary
You can convert a decimal to binary using toBinaryString() method of Integer wrapper class as follows.
int i = 42;
String binstr = Integer.toBinaryString(i);
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment