您好,登錄后才能下訂單哦!
要在Java中實現服務器端文件下載,可以使用JDK提供的HttpURLConnection類來連接服務器并下載文件。以下是一個簡單的示例:
import java.io.BufferedInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;
public class FileDownload {
public static void main(String[] args) {
String url = "http://example.com/file.txt";
String savePath = "downloaded_file.txt";
try {
URL fileUrl = new URL(url);
HttpURLConnection connection = (HttpURLConnection) fileUrl.openConnection();
connection.setRequestMethod("GET");
BufferedInputStream in = new BufferedInputStream(connection.getInputStream());
FileOutputStream out = new FileOutputStream(savePath);
byte[] buffer = new byte[4096];
int bytesRead;
while ((bytesRead = in.read(buffer)) != -1) {
out.write(buffer, 0, bytesRead);
}
out.close();
in.close();
connection.disconnect();
System.out.println("File downloaded successfully.");
} catch (IOException e) {
e.printStackTrace();
}
}
}
在上面的示例中,我們首先指定要下載的文件的URL和要保存的文件路徑。然后我們使用HttpURLConnection打開連接,并使用輸入流讀取文件內容,然后將其寫入輸出流保存到本地文件中。最后關閉所有流和連接。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。