對不起的標題感到抱歉。使用查詢字符串從HTTP端點下載PNG文件
我有這樣一個URL: http://testserver:8080/dummy/[email protected]_1231Fv_C
當我使用瀏覽器訪問這個URL,這將返回我一個PNG圖像。 但是,當我嘗試使用Jersey客戶端API獲取它時,我無法下載它。 (我試過java.nio中也一樣)
見我的代碼片段
Client client = Client.create();
client.setFollowRedirects(true);
WebResource r = client.resource(url);
InputStream in = r.get (InputStream.class);
ByteStreams.copy(in, new FileOutputStream(savedFile));
非常感謝你的幫助。
失敗如何顯示?你會得到一個異常堆棧跟蹤? – Barend
沒有失敗或例外。 – thinkanotherone