要使用Java Socket傳輸大文件,可以使用以下步驟:
創建一個ServerSocket對象來監聽某個端口號,等待客戶端連接。
客戶端使用Socket對象連接到服務器的IP地址和端口號。
服務器端接受客戶端的連接請求,使用accept()
方法返回一個Socket對象,用于與客戶端通信。
客戶端通過Socket對象獲取InputStream和OutputStream,用于讀取和發送數據。
服務器端也通過Socket對象獲取InputStream和OutputStream,用于讀取和發送數據。
服務器端從InputStream中讀取文件內容,并將內容寫入OutputStream發送給客戶端。
客戶端從InputStream中讀取服務器發送的文件內容,并將內容寫入文件。
反復進行步驟6和7,直到文件傳輸完成。
關閉所有的流和Socket連接。
以下是一個簡單的示例代碼:
服務器端代碼:
import java.io.*;
import java.net.*;
public class Server {
public static void main(String[] args) throws IOException {
ServerSocket serverSocket = new ServerSocket(8888);
System.out.println("等待客戶端連接...");
Socket socket = serverSocket.accept();
System.out.println("客戶端已連接");
InputStream inputStream = socket.getInputStream();
OutputStream outputStream = new FileOutputStream("output.txt");
byte[] buffer = new byte[1024];
int length;
while ((length = inputStream.read(buffer)) > 0) {
outputStream.write(buffer, 0, length);
}
System.out.println("文件傳輸完成");
outputStream.close();
inputStream.close();
socket.close();
serverSocket.close();
}
}
客戶端代碼:
import java.io.*;
import java.net.*;
public class Client {
public static void main(String[] args) throws IOException {
Socket socket = new Socket("localhost", 8888);
OutputStream outputStream = socket.getOutputStream();
InputStream inputStream = new FileInputStream("input.txt");
byte[] buffer = new byte[1024];
int length;
while ((length = inputStream.read(buffer)) > 0) {
outputStream.write(buffer, 0, length);
}
System.out.println("文件傳輸完成");
inputStream.close();
outputStream.close();
socket.close();
}
}
在這個示例中,服務器端將客戶端發送的文件內容寫入到名為"output.txt"的文件中。客戶端從名為"input.txt"的文件中讀取文件內容,并發送給服務器端。
注意:這個示例代碼只能用于傳輸小文件,如果要傳輸大文件,可以考慮使用多線程或者斷點續傳等技術來優化。