将Byte Array存储在Object中,然后将其转换为ObjectOutputStream? (卡住)

时间:2015-02-08 13:39:53

标签: java bytearray objectoutputstream

我有点不解决这个问题。

我有这个FileDetails类,它存储文件的详细信息/元数据 字节数组中的完整文件。我想在ObjectOutputStream中发送FileDetails对象跨越网络,接收器将在那里 简单地读取文件并将其强制转换回FileDetails。

以下是代码:

class FileDetails {

    private String fileName;
    private long fileSize;
    private byte[] fileData;

    public FileDetails(String fileName, long fileSize, byte[] fileData) {
        this.fileName = fileName;
        this.fileSize = fileSize;       
        this.fileData = fileData;
    }

    public String getFileName() {
        return fileName;
    }

    public long getFileSize() {
        return fileSize;
    }

    public byte[] getFileData() {
        return fileData;
    }

}


File file = new File("C://test.dat");
RandomAccessFile randFileAccess = new RandomAccessFile(file, "r");
byte[] buff = new byte[(int) file.length()];
randFileAccess.readFully(buff);

FileDetails fd = new FileDetails(file.getname(), file.length(); buff);

FileOutputStream fos = = new FileOutputStream(C://oos.dat);
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(fd);
oos.write(buff);

问题是文件“test.dat”非常大,并且一次性将其完全读入缓冲区(非常大)并不是最佳选择。我本来可以读的 以块的形式存入缓冲区,但这需要我创建文件并将数据保存到磁盘中,这是我无法做到的,因为FileDetails对象需要字节数组。

我该如何解决这个问题?我只想要这种方法,即将数据存储为FileDetails对象中的字节数组,然后将其转换为ObjectOutputStream,因为我将附加 附加一个关于ObjectOutStream文件的mp3文件信息并通过互联网发送。

任何建议?或者替代方法?

编辑: 其实我正在开发一个Android应用。它将文件的元数据与字节数组中的文件数据一起存储在FileDetails对象中。 此FileDetails对象将转换为ObjectOutputStream文件。现在,在此ObjectOutputStream文件前面附加了一个特定的mp3文件,该文件用于识别该文件已由我的应用程序发送。 这个组合的mp3文件(包含“隐藏的”ObjectOutputStream文件)通过“流行的”消息应用程序发送到接收器。 接收器通过他的“流行”消息应用程序下载mp3文件。现在我的应用程序开始运作了。它识别mp3文件。并从mp3文件中提取ObjectOutputStream文件。然后将其转换回FileDetails并使用它的元数据检索原始文件。 我的方法是否正确?有没有其他方法可以识别我的附加/隐藏文件?

提前多多感谢。

2 个答案:

答案 0 :(得分:2)

是否可以将类添加到接收器? 然后你可以尝试这样的事情:

File file = new File("C://test.dat")
InputStream in = null;
   try {
     in = new BufferedInputStream(new FileInputStream(file));
     -> send over the network
    finally {
     if (in != null) {
       in.close();
     }
   }
 }

接收器可以将字节写入临时文件(而不是将其保存在内存中)

InputStream is = socket.getInputStream();
FileOutputStream fos = new FileOutputStream("C://test.dat");
BufferedOutputStream bos = new BufferedOutputStream(fos);
//something like:
byte[] buffer = new byte[1024];
int len = is.read(buffer);
while (len != -1) {
    bos.write(buffer, 0, len);
    len = is.read(buffer);
}

如果操作完成,则实例化对象FileDetails fd = new FileDetails(the file you just created,....)

如果必须,您也可以通过网络发送课程定义。

答案 1 :(得分:1)

这里我添加了read / writeObject方法:

class FileDetails implements Serializable {
  private static final int CHUNK_LEN = 0x10000; // 64k
  private String fileName;
  private long fileSize;
  private File file;

  // Note: everything can be deduced from a File object
  public FileDetails(File file) {
    this.fileName = file.getName();
    this.fileSize = file.length();       
    this.file = file;
  }

  public String getFileName() {
    return fileName;
  }

  public long getFileSize() {
    return fileSize;
  }

  // explicit coding for reading a FileDetails object
  private void readObject(ObjectInputStream stream)
    throws IOException, ClassNotFoundException {
    fileName = stream.readUTF();  // file name
    fileSize = stream.readLong(); // file size
    // file data as a series of byte[], length CHUNK_LEN
    long toRead = fileSize;
    // write file data to a File object, same path name
    file = new File( fileName );
    OutputStream os = new FileOutputStream( file );
    while( toRead > 0 ){
      // last byte arrays may be shorter than CHUNK_LEN
      int chunkLen = toRead > CHUNK_LEN ? CHUNK_LEN : (int)toRead;
      byte[] bytes = new byte[chunkLen];
      int nread = stream.read( bytes );
      // write data to file
      os.write( bytes, 0, nread );
      toRead -= nread;
    }
    os.close();
  }

  // explicit coding for writing a FileDetails object
  private void writeObject(ObjectOutputStream stream)
    throws IOException {
    stream.writeUTF( fileName );   // file name as an "UTF string"
    stream.writeLong( fileSize );  // file size
    // file data as a series of byte[], length CHUNK_LEN
    long toWrite = fileSize;
    // read file data from the File object passed to the constructor
    InputStream is = new FileInputStream( file );
    while( toWrite > 0 ){
      // last byte[] may be shorter than CHUNK_LEN
      int chunkLen = toWrite > CHUNK_LEN ? CHUNK_LEN : (int)toWrite;
      byte[] bytes = new byte[chunkLen];
      int nread = is.read( bytes );
      stream.write( bytes );
      toWrite -= nread;
    }
    is.close();
  }

  private void readObjectNoData()
    throws ObjectStreamException {
  }
}

我用短文测试了这个:

File file = new File( "test.dat" );
FileDetails fd = new FileDetails( file );
FileOutputStream fos = new FileOutputStream("oos.dat");
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject( fd );
oos.close();

// test on a local system: rename test.dat to avoid overwriting
file.renameTo( new File( "test.dat.sav" ) );

FileInputStream fis = new FileInputStream("oos.dat");
ObjectInputStream ois = new ObjectInputStream(fis);
FileDetails fd1 = (FileDetails)ois.readObject();
ois.close();
// now the file test.dat has been rewritten under the same path,
// i.e., test.dat exists again and test.dat.sav == test.dat

我不确定接收方是否会对根据消息中发送的路径名写入某个文件感到满意。