0

我有一些代码似乎没有按应有的方式运行。重点是取一个 256x128x256x2 整数数组,将其拆分为 256 个 16x128x16x2 块,将这些块处理成一个字节数组,然后将该字节数组添加到要保存的主字节数组中。chunkdata[]保存前没问题,但保存后整个文件除了前 4096 个字节外都是空白的。位置表(文件中每个块的位置)在那里,前四个字节的“块头”在那里,其他的都是 0,这是不应该发生的。

public void createFile(int[][][][] map){
    byte[] file = new byte[fileLength]; //22,024,192 bytes long
    System.arraycopy(Sector.locationTable, 0, file, 0, Sector.locationTable.length); //This works as it should
    for(int cx = 0; cx < 16; cx++)
    {
        for(int cz = 0; cz < 16; cz++)
        {
            int start = sectorLength+cx*(sectorLength*chunkSectorLength)+cz*(chunkRows*sectorLength*chunkSectorLength); //this algorithm works, just rather hideous 
            int[][][][] chunk = getChunk(map, cx * 16, cz * 16); //This works as it should
            byte[] chunkdata = putChunk(chunk); //The data from this is correct

            int counter = 0;
            for(int i=start;i<chunkdata.length;i++){
                file[i]=chunkdata[counter]; //Data loss here?
                counter++;
            }
        }
    }
    System.out.println("Saving file...");
    writeFile(file, fileLocation);
}

public static void writeFile(byte[] file,String filename){
    try{
        FileOutputStream fos = new FileOutputStream(filename);
        fos.write(file);
        fos.close();
        Messages.showSuccessfulSave();
    }catch(Exception ex){
        Messages.showFileSavingError(ex);
    }
}

那么,假设 putChunk 和 getChunk 按预期工作,以及我的可怕算法,什么会导致前 4096 个字节之后的所有内容都是空白的?

提前致谢。

4

1 回答 1

1

你为什么要比较i什么chunkdata.length时候i被初始化start?我认为counter应该改为使用。

当前的:

   int counter = 0;
   for(int i=start;i<chunkdata.length;i++){
      file[i]=chunkdata[counter]; //Data loss here?
      counter++;
   }

相反,你想写这样的东西:

   int counter = 0;
   for(int i=start;counter<chunkdata.length;i++){
       file[i]=chunkdata[counter]; //Data loss here?
       counter++;
   }

或更紧凑的方式:

   for(int i=start,counter = 0;counter<chunkdata.length;i++,counter++){
       file[i]=chunkdata[counter]; //Data loss here?
   }
于 2012-10-15T04:31:36.570 回答