Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Parsing and Formatting a Byte Array into Decimal in Java
Set a BigInteger object.
BigInteger one;
Now, create a ByteArray −
byte byteArr[] = new byte[] { 0x1, 0x00, 0x00 };
one = new BigInteger(byteArr);
For Decimal, we have used toString() method without any parameter value.
String strResult = one.toString();
The following is an example −
Example
import java.math.*;
public class Demo {
public static void main(String[] args) {
BigInteger one;
// ByteArray
byte byteArr[] = new byte[] { 0x1, 0x00, 0x00 };
one = new BigInteger(byteArr);
// Decimal
String strResult = one.toString();
System.out.println("ByteArray to Decimal = "+strResult);
}
}
Output
ByteArray to Decimal = 65536
Advertisements