Java Array Dump dumpAsciiChars(byte[] b, int blen)

Here you can find the source of dumpAsciiChars(byte[] b, int blen)

Description

Print a dump hex of the byte of array

License

Apache License

Parameter

Parameter Description
b The byte of array
blen The number of byte to dump

Declaration

private static void dumpAsciiChars(byte[] b, int blen) 

Method Source Code

//package com.java2s;
/**/*from  w w  w .ja va2s.co  m*/
 *   Copyright 2006 Alcatel, OSP.
 *
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 */

public class Main {
    /**
     * Print a dump hex of the byte of array
     *
     * @param  b     The byte of array
     * @param  blen  The number of byte to dump
     */
    private static void dumpAsciiChars(byte[] b, int blen) {
        int lineBytes;

        System.out.print("            ");
        for (lineBytes = 0; lineBytes < blen; lineBytes++) {
            if ((b[lineBytes] >= 32) && (b[lineBytes] <= 126)) {
                System.out.print((char) b[lineBytes]);
            } else {
                System.out.print(".");
            }
        }
        // for

        System.out.println();
    }
}

Related

  1. dumpArray(final float[] array, final int maxElemsPerLine)
  2. dumpArray(String msg, float[][] A, int x1, int x2, int y1, int y2)
  3. dumpArray(String msg, Object[] refs)
  4. dumpArray(T[] ts)
  5. dumpArrayHex(byte b[])
  6. dumpAsHex(byte[] byteBuffer, int length)
  7. dumpAsHex(byte[] src, int length)
  8. dumpCharCharArray(String msg, char[][] o)
  9. dumpData(byte data[])