Here you can find the source of readBytes(@NotNull String filePath)
byte[]
.
@NotNull public static byte[] readBytes(@NotNull String filePath) throws IOException
/*/*from w w w .j av a2 s .c om*/ * Copyright 2002-2013 Drew Noakes * * 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. * * More information about this project is available at: * * http://drewnoakes.com/code/exif/ * http://code.google.com/p/metadata-extractor/ */ import com.drew.lang.annotations.NotNull; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; public class Main{ /** * Reads the contents of a {@link File} into a <code>byte[]</code>. This relies upon <code>File.length()</code> * returning the correct value, which may not be the case when using a network file system. However this method is * intended for unit test support, in which case the files should be on the local volume. */ @NotNull public static byte[] readBytes(@NotNull File file) throws IOException { int length = (int) file.length(); // should only be zero if loading from a network or similar assert (length != 0); byte[] bytes = new byte[length]; int totalBytesRead = 0; FileInputStream inputStream = null; try { inputStream = new FileInputStream(file); while (totalBytesRead != length) { int bytesRead = inputStream.read(bytes, totalBytesRead, length - totalBytesRead); if (bytesRead == -1) { break; } totalBytesRead += bytesRead; } } finally { if (inputStream != null) { inputStream.close(); } } return bytes; } /** * Reads the contents of a {@link File} into a <code>byte[]</code>. This relies upon <code>File.length()</code> * returning the correct value, which may not be the case when using a network file system. However this method is * intended for unit test support, in which case the files should be on the local volume. */ @NotNull public static byte[] readBytes(@NotNull String filePath) throws IOException { return readBytes(new File(filePath)); } }