Как читать данные из байтового массива из Java - PullRequest
0 голосов
/ 07 мая 2011

привет всем я конвертирую mp3 файл в байтовый массив и читаю из байтового массива, но в строке номер 15 показано исключение нулевого указателя мой код:

public class MainClass {
 static byte[] bytesarray = null;
  public static void main(String args[]){
 try {

    FileInputStream fis=new FileInputStream("D:\\taxi.mp3");
    try {
        fis.read(bytesarray,0,32);
        System.out.println(bytesarray.length);
    } catch (IOException e) {
        e.printStackTrace();
    }
} catch (FileNotFoundException e) {
    e.printStackTrace();
}



ByteArrayInputStream in = new ByteArrayInputStream(bytesarray);     
for (int i=0; i<32; i++) {
    int c;
    while ((c = in.read()) != -1) {
    if (i == 0) {
    System.out.print((char) c);
    } else {
    System.out.print(Character.toUpperCase((char) c));
    }
    }
    System.out.println();

    } 

} }

Ответы [ 2 ]

3 голосов
/ 07 мая 2011

static byte[] bytesarray = new byte[32]; должен выполнить работу, вы не инициализировали свой массив ...

См. документацию для чтения .

1 голос
/ 07 мая 2011
static byte[] bytesarray = new byte[32];
...