Java Dump Byte Array dumpBytes(PrintStream printStream, byte bytes[])

Here you can find the source of dumpBytes(PrintStream printStream, byte bytes[])

Description

dump Bytes

License

Apache License

Declaration

static public void dumpBytes(PrintStream printStream, byte bytes[]) 

Method Source Code

//package com.java2s;
/*/*from w  ww .  jav a 2 s  . c  o m*/
   Copyright (c) 2012 LinkedIn Corp.
    
   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.
*/

import java.io.PrintStream;

public class Main {
    static public void dumpBytes(PrintStream printStream, byte bytes[]) {
        for (int i = 0; i < bytes.length; i++) {
            if (i % 16 == 0)
                printStream.printf("%1$06X:", i);
            printStream.print(' ');
            if (bytes[i] < 32 || bytes[i] >= 127)
                printStream.print(' ');
            else
                printStream.print((char) bytes[i]);
            printStream.printf(" %1$02X", bytes[i]);
            if (i % 16 == 15)
                printStream.println();
        }
    }
}

Related

  1. dump(final byte[] b, final PrintStream out)
  2. dump(PrintStream printer, byte[] buffer, int offset, int count)
  3. dumpBuffer(final PrintStream out, final String label, final byte[] b)
  4. dumpByteArray(byte[] byteArray)
  5. dumpByteArray(byte[] bytes)
  6. dumpBytesAsString(ByteArrayOutputStream baos)
  7. dumpBytesToFile(byte[] bytes, String outputFile)
  8. dumpClass(String file, byte[] bytes)
  9. dumpFileIntoByteArray(File f)