如何将文件从REST php服务器传输到Java客户端

时间:2013-10-21 21:30:08

标签: java php rest

我一直在浏览这个网站,寻找一个示例或“隧道尽头的光”,关于如何编写一个代码,让我从PHP的REST服务器下载文件到JAVA中的客户端。 / p>

客户端将发出一个带有该文件ID的GET请求,然后PHP REST代码应该响应该文件,JAVA接收该文件并将其存储在硬盘中。

任何想法......? 我尝试像这样做PHP Rest服务器......:

$file = 'path_to_file/file.mp3';
$content = readfile($file);

这个$ content var,作为回复发送......

客户......我写的是:

try {
    URL url = new URL("url/to/rest/server");
    HttpURLConnection conn (HttpURLConnection) url.openConnection();
    conn.setRequestMethod("GET");
    conn.setRequestProperty("Accept", "Content-Disposition: filename\"music.mp3\"");

    if(conn.getResponseCode() != 200) {
        throw new RuntimeException("Failed : HTTP error code: " + conn.getResponseCode());
    }

    BufferedReader br = new BufferedReader(new InputStreamReader((conn.getInputStream())));

    try {
        String output;
        File newFile = newFile("/some/path/file.mp3");
        fileWriter fw = new FileWriter(newFile);

        while ((output = br.readLine()) != null) {
            fw.write(output);
        }
        fw.close();
    } catch (IOException iox) {
        //do
    }
} catch (MalformedURLException e) {
    //do
}

我的示例的问题是,当我在客户端上收到文件时有点损坏或某事!...在我的带有mp3文件的示例中,客户端上的任何音乐播放器都说该文件已损坏或者没有不行。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

处理二进制数据(MP3文件)时,您应该使用InputStreamOutputStream而不是读者/作者。此外,BufferedReader.readLine()会删除任何'换行符'也来自输出。

因为您正在使用读者/写作者,所以二进制数据正在转换为字符串,我确信发生了很多腐败。

尝试以下方法:

InputStream is = conn.getInputStream();
byte[] buffer = new byte[10240]; // 10K is a 'reasonable' amount

try {
    File newFile = newFile("/some/path/file.mp3");
    FileOutputStream fos = new FileOutputStream(newFile);

    int len = 0;
    while ((len = is.read(buffer)) >= 0) {
        fos.write(buffer, 0, len);
    }
    fos.close();
} catch (IOException iox) {
    //do
}