Android Byte Array Convert From toByte(String value, byte defaultValue)

Here you can find the source of toByte(String value, byte defaultValue)

Description

to Byte

Declaration

public static byte toByte(String value, byte defaultValue) 

Method Source Code

//package com.java2s;

public class Main {

    public static byte toByte(String value, byte defaultValue) {
        try {//w  w w . j a  v a  2 s  .  c  om
            return Byte.parseByte(value);
        } catch (Exception e) {
            return defaultValue;
        }
    }
}

Related

  1. toByteArray(short[] array)
  2. toByteArrayFromByteWrapperArray(Byte[] B)
  3. convertIntArrayToByteArray(int[] intArray)
  4. shortToByteArray(short value)
  5. convertLongArrayToByteArray(long[] longArray)
  6. toByte(int byteValue)
  7. toByte(int n)
  8. toByteObject(String value, Byte defaultValue)
  9. toBytes(char[] chars)