Android:在服务器上播放mp3文件时出现异常。

时间:2013-01-24 06:34:50

标签: android android-mediaplayer

我正在尝试从服务器获取音频mp3文件并在Android应用程序上播放它。 以下是该函数的代码:

protected void managerOfSound(String theText) throws MalformedURLException, IOException {
        if (mp != null) {
            mp.reset();
            mp.release();
        }
        URLConnection conn = new URL("http://192.168.1.68:3000/play/song.mp3").openConnection();
        conn.connect();
        InputStream stream = conn.getInputStream();
        File file = File.createTempFile("downloadingMedia", ".mp3");

        byte[] buffer = new byte[4096];
        int n = - 1;

        OutputStream output = new FileOutputStream( file );
        while ( (n = stream.read(buffer)) != -1)
        {
                if (n > 0)
                {
                        output.write(buffer, 0, n);
                }
        }
        output.close();


        System.out.println("PATH IS" + file.getAbsolutePath());
        mp.setDataSource(file.getAbsolutePath());
        mp.start();
    }

但是,我在行mp.setDataSource中得到一个nullpointerexception。我验证了文件的绝对路径存在。

在服务器端,我也验证了正确接收的请求和200响应。

当我在浏览器上打开URL时,会出现下载对话框,询问是保存还是下载文件。

它在哪里给出空指针异常?

1 个答案:

答案 0 :(得分:1)

我的网址没有得到任何回复(我的代理问题)

关注此Tutorial

This