简体   繁体   English

从Android上的二进制文件读取

[英]Read From Binary File on Android

I have some data that I have saved into a file using Matlab. 我有一些数据已使用Matlab保存到文件中。 I have saved this data in Matlab as follows: 我已将数据保存在Matlab中,如下所示:

fwrite(fid,numImg2,'integer*4');
fwrite(fid,y,'integer*4');
fwrite(fid,imgName,'char*1');
fwrite(fid,a,'integer*4');        
fwrite(fid,img.imageData,'double'); 

I read this data back into Matlab using the following code 我使用以下代码将该数据读回Matlab

fread(fid,1,'integer*4');// Returns numImg2
fread(fid,1,'integer*4');// Returns y which is the number of cha rectors in the image name,     i use in the following line to read the image name, say for example if the image name is 1.jpg, then using the following will return the image name
fread(fid,5,'char*1');
fread(fid,1);
etc...

I want to be able to read this data on an android phone. 我希望能够在Android手机上读取此数据。 This is the code I have at the moment. 这是我目前的代码。

DataInputStream ds = new DataInputStream(new FileInputStream(imageFile));
                //String line;
                // Read the first byte to find out how many images are stored in the file.
                int x = 0;
                byte numberOfImages;
                int numImages = 0;
                while(x<1)
                {
                    numberOfImages = ds.readByte();
                    numImages = (int)numberOfImages;
                    x++;
                }

                int lengthName = 0;
                String imgName = "";
                for(int y=1; y<=numImages; y++)
                {
                    lengthName = ds.readInt();
                    byte[] nameBuffer = new byte[lengthName];
                    char[] name = new char[lengthName];
                    for(int z = 1; z<=5;z++)
                    {
                        nameBuffer[z-1] = ds.readByte();
                        //name[z-1] = ds.readChar();
                    }
                    imgName = new String(nameBuffer);
                    //imgName = name.toString();
                }

                text.append(imgName);

I cannot seem to retrieve the image name as a string from the binary file data. 我似乎无法从二进制文件数据中以字符串形式检索图像名称。 Any help is much appreciated. 任何帮助深表感谢。

I'm not sure it will work but anyway: 我不确定它是否会起作用,但是无论如何:

byte[] nameBuffer = new byte[lengthName];
if(ds.read(nameBuffer) != lengthName) {
    // error handling here
    return;
}
imgName = new String(nameBuffer, "ISO-8859-1");

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM