Java Char to Byte Array charToBytes(char c, byte[] arr, int pos)

Here you can find the source of charToBytes(char c, byte[] arr, int pos)

Description

Writes a character to a byte array, taking up 2 bytes.

License

Open Source License

Parameter

Parameter Description
c the character to write
arr the array to write the character to.
pos the position of the character's first byte.

Exception

Parameter Description
IllegalArgumentException if the position is out of the range of the byte array.

Declaration

public static void charToBytes(char c, byte[] arr, int pos)
        throws IllegalArgumentException 

Method Source Code

//package com.java2s;
/*/*from w w  w .j  a v a2 s  .  c om*/
 * Process Sketcher is a simple flowchart making software.
 * Copyright (C) 2015  Jonathon Prehn, Kevin Prehn
 * 
 * This file is a part of Process Sketcher.
 * 
 * Process Sketcher is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * Process Sketcher is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with Process Sketcher.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * Writes a character to a byte array, taking up 2 bytes.
     *
     * @param c the character to write
     * @param arr the array to write the character to.
     * @param pos the position of the character's first byte.
     * @throws IllegalArgumentException if the position is out of the 
     * range of the byte array.
     */
    public static void charToBytes(char c, byte[] arr, int pos)
            throws IllegalArgumentException {
        checkBounds(arr, pos);
        arr[pos] = (byte) ((c & 0xFF00) >> 8);
        arr[pos + 1] = (byte) (c & 0x00FF);
    }

    /**
     * Checks the position to the bounds of the byte array.
     * @param arr the byte array
     * @param pos the position in the byte array
     * @throws IllegalArgumentException thrown if the position is out of the 
     * byte array's bounds.
     */
    private static void checkBounds(byte[] arr, int pos)
            throws IllegalArgumentException {
        if (pos < 0 || pos >= arr.length) {
            throw new IllegalArgumentException(
                    "Position is out of bounds of "
                            + "the byte array: position is " + pos
                            + " while the byte"
                            + " array only accepts 0 to "
                            + (arr.length - 1));
        }
    }
}

Related

  1. charToByteArray(char value)
  2. charToByteArrayBE(char data)
  3. charToBytes(byte[] arr, int offset, char c)
  4. charToBytes(char c)
  5. charToBytes(char[] buffer)
  6. charToBytes(final char i)