Java Byte Array Print printBytes(String comment, byte[] input)

Here you can find the source of printBytes(String comment, byte[] input)

Description

print Bytes

License

Open Source License

Declaration

public final static void printBytes(String comment, byte[] input) 

Method Source Code

//package com.java2s;
/*//from   w w  w. j a  va  2s.  c o  m
 * Peafactory - Production of Password Encryption Archives
 * Copyright (C) 2015  Axel von dem Bruch
 * 
 * This library 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 2 of the License, 
 * or (at your option) any later version.
 * This library 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.
 * See:  http://www.gnu.org/licenses/gpl-2.0.html
 * You should have received a copy of the GNU General Public License 
 * along with this library.
 */

public class Main {
    public final static void printBytes(String comment, byte[] input) {
        System.out.println("\n" + comment + ": ");
        for (int i = 0; i < input.length; i++) {
            if (i > 0 && i % 32 == 0)
                System.out.println("");
            System.out.print(" " + input[i]);
        }
        System.out.println("");
    }

    public final static void printBytes(String comment, byte[] input,
            int begin, int end) {
        System.out.println("\n" + comment + ": " + begin + "-" + end);
        for (int i = begin; i < end; i++) {
            if (i > 0 && i % 32 == 0)
                System.out.println("");
            System.out.print(" " + input[i]);
        }
        System.out.println("");
    }
}

Related

  1. printBytes(byte[] bytes)
  2. printBytes(byte[] bytes)
  3. printBytes(byte[] bytes)
  4. printBytes(byte[] bytes, int offset)
  5. printBytes(byte[] data)
  6. printBytes(String x)
  7. printBytesHexEncoded(final byte[] byteArray)
  8. printByteSize(long bytes)
  9. printBytesToString(byte[] bytes, String structName)