如何发送要存储在服务器中的音频文件

时间:2012-09-02 19:53:58

标签: android audio webserver send

我想知道如何在Android设备的SD卡中转换和音频文件存储,通过互联网将音频发送到服务器。我看了很多,但一切都不一样。

我有和.3gp音频格式,并且它没有格式化,我只想获取我想要的服务器目录中的文件。请指导,教程,评论。我将不胜感激。

2 个答案:

答案 0 :(得分:3)

我写了这段代码来将文件发送到服务器:

path =要发送的文件的绝对路径。 剩下的参数似乎是不言自明的。

    public static String sendFileToServer(String path, String urlString,
        String mimeType, String id) throws Exception {


    try {

        String URL = "", file_name = "";
        if (!path.equals("")) {
            file_name = path.substring(path.lastIndexOf("/") + 1);
        }

        File directory = new File(path);

        byte[] data = new byte[(int) directory.length()];
        try {
            FileInputStream fileInputStream = new FileInputStream(directory);
            fileInputStream.read(data);

        } catch (FileNotFoundException e) {
            System.out.println("File Not Found.");
            e.printStackTrace();
        } catch (IOException e1) {
            System.out.println("Error Reading The File.");
            e1.printStackTrace();
        }

        URL = Constants.WEB_ROOT_URL + urlString;
        Log.v("AppEngine Manager", "Image Upload URL: " + URL);

        HttpClient httpClient = new DefaultHttpClient();
        HttpPost postRequest = new HttpPost(URL);
        ByteArrayBody bab = new ByteArrayBody(data, file_name);
        MultipartEntity reqEntity = new MultipartEntity(
                HttpMultipartMode.BROWSER_COMPATIBLE);

        reqEntity.addPart("media_type", new StringBody(mimeType));
        reqEntity.addPart("file_name", new StringBody(file_name));
        reqEntity.addPart("file_id", new StringBody(file_name));
        reqEntity.addPart("file", bab);

        postRequest.setEntity(reqEntity);
        HttpResponse response = httpClient.execute(postRequest);
        BufferedReader reader = new BufferedReader(new InputStreamReader(
                response.getEntity().getContent(), "UTF-8"));
        String sResponse;
        StringBuilder s = new StringBuilder();

        while ((sResponse = reader.readLine()) != null) {
            s = s.append(sResponse);
        }


        return s + "";

    } catch (Exception e) {
        // handle exception here
        Log.e(e.getClass().getName(), e.getMessage());
        return "exception";
    }
}

答案 1 :(得分:0)

您可以将HttpClient POST音乐文件用于某个服务器应用程序。

例如,在PHP中,您将能够通过$_FILE['key']读取该文件。实际存储和处理取决于您的具体要求。此外,您不指定是否要求服务器输出转码后的文件。

对于音频数据的转码,您可以使用FFmpeg