0

在我的应用程序中,我需要首先从特定文件中读取音频数据,然后将其存储在缓冲区中。之后我将使用它进行处理和东西。问题是,当我尝试打印出它的内容时,它给出了 0:

String data = String.valueOf(buffer[50]+"     "+buffer[100]+"     "+buffer[200]+buffer[599]);
display.setText(data);

打印上面的语句全为零!...为什么???

这是我的代码:

   public void readAudioDataFromFile() {

     String filePath2 = "/storage/sdcard0/Sounds/originalFile.pcm";
     FileInputStream ins = null;
     File file = new File(filePath2);
     int size = (int) file.length();    
     byte [] buffer=new byte [size];
     try {
       ins= new FileInputStream(filePath2);
     } catch (FileNotFoundException e) {
       e.printStackTrace();
     }
     try {
       ins.read(buffer, 0,size);
       int count =0;
       for(int i=0; i<buffer.length; i++)
       {
         if(buffer[i]!=0)
           count++;
       }
       String data = String.valueOf((count); 
       display.setText(data);
     } catch (IOException e) {
       // TODO Auto-generated catch block
       e.printStackTrace();
     }
   }

奇怪的是,当我尝试以下语句时:

  int x= ins.read(buffer, 0,size);

当我打印 x 时,它给出了一个等于文件大小的数字,

此外,当我尝试打印出您在我的代码中看到的“计数”时,它也给出了输出!

我的意思是不应该意味着缓冲区不为空???为什么如果它不是空的,为什么当我尝试打印它的元素时它给了我零???

4

1 回答 1

1

目前尚不清楚问题是什么,但可能是由以下原因引起的:

ins.read(buffer, 0,size);

您忽略了read调用的结果,它将告诉您实际读取了多少字节到buffer. 假设您将读取size字节是不正确的......即使文件大小为size.

正确的方法是循环直到你读完整个文件......像这样:

       int pos = 0;
       while (pos < size) {
           pos += ins.read(buffer, pos, size - pos);
       }

至于为什么你得到全零,我认为最简单(也是最有可能)的解释是你正在阅读的文件包含全零。

于 2013-07-20T05:15:30.113 回答