文章列表
private static byte[] loadFile(String file) throws IOException
{
// save data to binary stream
ByteArrayOutputStream byteStream = null;
// read file to stream
InputStream in = null;
// binary data which get from file
byte[] data = null;
...
private static byte[] loadFile(String file) throws IOException
{
// save data to binary stream
ByteArrayOutputStream byteStream = null;
// read file to stream
InputStream in = null;
// binary data which get from file
byte[] data = null;
...