在我的应用程序中,我需要首先从特定文件中读取音频数据,然后将其存储在缓冲区中。之后我将使用它进行处理和东西。问题是,当我尝试打印出它的内容时,它给出了 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 时,它给出了一个等于文件大小的数字,
此外,当我尝试打印出您在我的代码中看到的“计数”时,它也给出了输出!
我的意思是不应该意味着缓冲区不为空???为什么如果它不是空的,为什么当我尝试打印它的元素时它给了我零???