Android examples for File Input Output:Byte Array Copy
copy Of byte array
/**/*from w w w . j a v a 2 s . c o m*/ * Source obtained from crypto-gwt. Apache 2 License. * https://code.google.com/p/crypto-gwt/source/browse/crypto-gwt/src/main/java/com/googlecode/ * cryptogwt/util/ByteArrayUtils.java */ //package com.book2s; public class Main { public static byte[] copyOf(byte[] bytes) { return copyOfRange(bytes, 0, bytes.length); } public static byte[] copyOfRange(byte[] bytes, int offset, int len) { byte[] result = new byte[len]; System.arraycopy(bytes, offset, result, 0, len); return result; } }