Java Convert BigDecimal value to byte value

Tags: BigDecimal Convert byte

In this Java core tutorial we learn how to convert a java.math.BigDecimal object to a byte value in Java programming language.

How to convert BigDecimal to byte in Java

In Java, with a given BigDecimal object we can use the java.math.BigDecimal.byteValue() method to convert it to a byte value as the following example Java code.

BigDecimalByteValueExamples.java

package simplesolution.dev;

import java.math.BigDecimal;

public class BigDecimalByteValueExamples {

    public static void main(String... args) {
        BigDecimal bigDecimal = new BigDecimal("9.01");

        byte byteValue = bigDecimal.byteValue();

        System.out.println(bigDecimal);
        System.out.println(byteValue);
    }
}

Happy Coding 😊

Java Convert long to BigDecimal

Java Convert int to BigDecimal

Java Convert double to BigDecimal

Java Convert float to BigDecimal

Java Convert BigInteger to BigDecimal

How to use BigDecimal in Java by Examples

How to Add two BigDecimal values in Java

How to Subtract two BigDecimal values in Java

How to Multiply two BigDecimal values in Java

How to Divide two BigDecimal values in Java

Java Convert BigDecimal value into double value

Java Convert BigDecimal value into float value

Java Convert BigDecimal value into int value

Java Convert BigDecimal value into long value

Java Convert BigDecimal value into short value

Java Convert BigDecimal to String

Java Convert String to BigDecimal

Java Compare two BigDecimal values

How to Negate BigDecimal Value in Java

How to Round BigDecimal Value in Java

How to Get Absolute of BigDecimal Value in Java

Java Convert BigDecimal to BigInteger