Here you can find the source of dumpAsciiChars(byte[] b, int blen)
Parameter | Description |
---|---|
b | The byte of array |
blen | The number of byte to dump |
private static void dumpAsciiChars(byte[] b, int blen)
//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(); } }