2

经过 2 天的研究,我没有找到任何解决问题的方法:/

我想下载一个 mp3 文件,该文件只有在浏览器中调用 URL 后才会返回。

我不能给你实际的网址,因为由于权利限制,我不允许这样做,但它的形式是:

http://wscompany.name.com/downloadws/getDlFile/mdkHdKy97RppVWOsIOdDBuG/audio/1478

如您所见,此 URL 没有 mp3 扩展名。因此,如果我将这种 URL 放在 windows 上的浏览​​器中,它会返回一个 MP3 以保存到磁盘上,这很好。但是如果我想在 android 中调用这个 URL 来下载返回的最终文件(mp3),它就不起作用。

我尝试使用直接包含 mp3 文件的 url 并且效果很好(例如http://www.mediacollege.com/downloads/sound-effects/urban/factory/Factory_External_01.mp3),但没有 mp3 的 url扩展,即使它确实返回一个 mp3,我希望你明白我的意思。

有谁知道如何在android中做到这一点?

这是我的代码,使用 AsyncTask,由

new Download(MyActivity.this, urlToCall).execute();

和下载 AsyncTask :

public class Download extends AsyncTask<String, Void, String> 
{
    ProgressDialog mProgressDialog;

    Context context;
    String urlDownload;

    public Download(Context context,String url) 
    {
        this.context = context;
        this.urlDownload=url;
    }

    protected void onPreExecute() 
    {
        mProgressDialog = ProgressDialog.show(context, "","Please wait, Download for " + urlDownload );
        Log.v("DOWNLOAD", "Wait for downloading url : " + urlDownload);
    }

    protected String doInBackground(String... params) 
    {
        try 
        {
            //URL url = new URL("http://www.mediacollege.com/downloads/sound-effects/urban/factory/Factory_External_01.mp3");
            URL url = new URL(urlDownload);

            Log.w( "DOWNLOAD" , "URL TO CALL : " + url.toString());
            HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();

            //set up some things on the connection
            urlConnection.setRequestMethod("GET");
            urlConnection.setDoOutput(true);
            urlConnection.connect();

            File folder = new File(Environment.getExternalStorageDirectory()+ "/MyDownloaded/") ;

            boolean success = true;
            if (!folder.exists()) {
                success = folder.mkdir();
            }

            File file = new File(folder,"somefile.mp3");

            FileOutputStream fileOutput = new FileOutputStream(file);
            InputStream inputStream = urlConnection.getInputStream();

            //this is the total size of the file
            int totalSize = urlConnection.getContentLength();
            //variable to store total downloaded bytes
            int downloadedSize = 0;

            //create a buffer...
            byte[] buffer = new byte[1024];
            int bufferLength = 0; //used to store a temporary size of the buffer

            //now, read through the input buffer and write the contents to the file
            while ( (bufferLength = inputStream.read(buffer)) > 0 ) {
                //add the data in the buffer to the file in the file output stream (the file on the sd card
                fileOutput.write(buffer, 0, bufferLength);
                //add up the size so we know how much is downloaded
                downloadedSize += bufferLength;
                //this is where you would do something to report the prgress, like this maybe
                //updateProgress(downloadedSize, totalSize);
                Log.w( "DOWNLOAD" , "progress " + downloadedSize + " / " + totalSize);

            }
            //close the output stream when done
            fileOutput.close();

        //catch some possible errors...
        } 
        catch (MalformedURLException e) 
        {
            Log.e( "DOWNLOAD" , "ERROR : " + e );
        } 
        catch (IOException e) 
        {
            Log.e( "DOWNLOAD" , "ERROR : " + e );
        }
        return "done";
    }

    private void publishProgress( int i )
    {
        Log.v("DOWNLOAD", "PROGRESS ... " + i);
    }

    protected void onPostExecute(String result) 
    {
        if (result.equals("done")) 
            mProgressDialog.dismiss();
    }

提前谢谢你,我希望有人能帮助我:)

开发者

4

2 回答 2

1

初始 URL 很可能包含状态 302 重定向到实际托管或提供 mp3 的另一个页面。有一个名为 Jsoup 的 Java 库,您可以使用它来获取实际的 mp3 文件并下载它。因此,假设您的初始 URL 为: http ://wscompany.name.com/downloadws/getDlFile/mdkHdKy97RppVWOsIOdDBuG/audio/1478

您应该做的第一件事是打开浏览器,右键单击屏幕上的任意位置并选择“检查元素”或类似的东西,以便您可以监控网络流量。在检查元素窗格打开的情况下,输入上面的 URL,您应该会看到它首先转到该 URL(显示 302 重定向状态),然后转到另一个 URL(可能),最后到达目的地(状态为200)。状态 200 页面是您想要的实际页面。您可以像这样在 Jsoup 中输入上述 URL:

文档 doc = Jsoup.connect(" http://wscompany.name.com/downloadws/getDlFile/mdkHdKy97RppVWOsIOdDBuG/audio/1478 ").followredirect(true).header("","").header(""," ”)。...等 .post() 或 .get();

它返回一个 Document 对象(阅读 Jsoup 文档)。可以解析此 Document 对象以获取某些数据...例如您也可以传递给 Jsoup.connect 方法的其他 URL,直到您获得要使用 Android 下载的实际 mp3。

查看“检查元素”窗格中列出的请求标头并将这些标头与多个 .header() 方法链接起来,将它们添加到 .connect() 方法非常重要。

我知道这个回复已经晚了 2 年,但希望它对那些仍然需要做你正在尝试的事情的人有所帮助。

于 2015-09-04T02:45:01.210 回答
0

您可以在台式 PC 上使用网络嗅探器(如 Wireshark)来查看请求 MP3 时究竟发生了什么。我的猜测是重定向到另一个 URL。

于 2013-05-14T07:58:56.373 回答