Socket 에서 파일 을 보 내 고 받 는 예
이 예 에서 간단 한 협 의 를 설계 했다.보 낸 내용 은 다음 과 같 습 니 다.
파일 이름 길이 (4 바이트) - 파일 이름 - 파일 내용 길이 (4 바이트) - 파일 내용.
수신 단 도 이 구조 에 따라 해석 된다.클 라 이언 트 클래스 를 먼저 보고 서버 클래스 를 보 는 것 을 권장 합 니 다.
import java.io.*;
import java.net.ServerSocket;
import java.net.Socket;
/**
*
*/
public class FileTrasmission {
//
public static void main(String[] args) throws Exception {
int port = 5678;
new Server(port, "c:\save\").start();
new Client().sendFile("127.0.0.1", port, "c:\test.txt");
}
}
/**
* 。 。 。
*/
class Server {
private int listenPort;
private String savePath;
/**
*
*
* @param listenPort
* @param savePath
*
* @throws IOException
*/
Server(int listenPort, String savePath) throws IOException {
this.listenPort = listenPort;
this.savePath = savePath;
File file = new File(savePath);
if (!file.exists() && !file.mkdirs()) {
throw new IOException(" " + savePath);
}
}
//
public void start() {
new ListenThread().start();
}
// , int。b 4, 4 。
public static int b2i(byte[] b) {
int value = 0;
for (int i = 0; i < 4; i++) {
int shift = (4 - 1 - i) * 8;
value += (b[i] & 0x000000FF) << shift;
}
return value;
}
/**
*
*/
private class ListenThread extends Thread {
@Override
public void run() {
try {
ServerSocket server = new ServerSocket(listenPort);
//
while (true) {
Socket socket = server.accept();
new HandleThread(socket).start();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
/**
*
*/
private class HandleThread extends Thread {
private Socket socket;
private HandleThread(Socket socket) {
this.socket = socket;
}
@Override
public void run() {
try {
InputStream is = socket.getInputStream();
readAndSave(is);
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
socket.close();
} catch (IOException e) {
// nothing to do
}
}
}
//
private void readAndSave(InputStream is) throws IOException {
String filename = getFileName(is);
int file_len = readInteger(is);
System.out.println(" :" + filename + ", :" + file_len);
readAndSave0(is, savePath + filename, file_len);
System.out.println(" (" + file_len + " )。");
}
private void readAndSave0(InputStream is, String path, int file_len) throws IOException {
FileOutputStream os = getFileOS(path);
readAndWrite(is, os, file_len);
os.close();
}
// , size
private void readAndWrite(InputStream is, FileOutputStream os, int size) throws IOException {
byte[] buffer = new byte[4096];
int count = 0;
while (count < size) {
int n = is.read(buffer);
// n = -1
os.write(buffer, 0, n);
count += n;
}
}
//
private String getFileName(InputStream is) throws IOException {
int name_len = readInteger(is);
byte[] result = new byte[name_len];
is.read(result);
return new String(result);
}
//
private int readInteger(InputStream is) throws IOException {
byte[] bytes = new byte[4];
is.read(bytes);
return b2i(bytes);
}
//
private FileOutputStream getFileOS(String path) throws IOException {
File file = new File(path);
if (!file.exists()) {
file.createNewFile();
}
return new FileOutputStream(file);
}
}
}
/**
*
*/
class Client {
// , int
public static byte[] i2b(int i) {
return new byte[]{
(byte) ((i >> 24) & 0xFF),
(byte) ((i >> 16) & 0xFF),
(byte) ((i >> 8) & 0xFF),
(byte) (i & 0xFF)
};
}
/**
* 。 {@link Integer#MAX_VALUE}
*
* @param hostname IP
* @param port
* @param filepath
*
* @throws IOException
*/
public void sendFile(String hostname, int port, String filepath) throws IOException {
File file = new File(filepath);
FileInputStream is = new FileInputStream(filepath);
Socket socket = new Socket(hostname, port); OutputStream os = socket.getOutputStream();
try {
int length = (int) file.length();
System.out.println(" :" + file.getName() + ", :" + length);
//
writeFileName(file, os);
writeFileContent(is, os, length);
} finally {
os.close();
is.close();
}
}
//
private void writeFileContent(InputStream is, OutputStream os, int length) throws IOException {
//
os.write(i2b(length));
//
byte[] buffer = new byte[4096];
int size;
while ((size = is.read(buffer)) != -1) {
os.write(buffer, 0, size);
}
}
//
private void writeFileName(File file, OutputStream os) throws IOException {
byte[] fn_bytes = file.getName().getBytes();
os.write(i2b(fn_bytes.length)); //
os.write(fn_bytes); //
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Exception in thread main java.lang. NoClassDefFoundError 오류 해결 방법즉,/home/hadoop/jarfile) 시스템은 Hello World 패키지 아래의class라는 클래스 파일을 실행하고 있다고 오인하여 시스템의 CLASSPATH 아래 (일반적으로 현재 디렉터리를 포함) Hell...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.