分享

Java Socket通信实现文件传输/图片传输

 oneseral 2012-07-27
Admin
2011年8月19日
名人名言:我了解你们的种族。它是由绵羊组成的。他们给少数人统治着,很少或者从来没有给多数人统治过。他们压抑了自己的感情和信仰,跟随着一小撮拼命喊叫的人。有时候那喊叫的人是对的,有时候是错的;可是那没关系,大伙儿总是因为你们永远并且始终是少数人的奴隶。从来没有一个国家,在那里大多数的为心坎里是忠于任何这种制度的。——马克吐温 

这只是一个简单的Demo,实际应用时,可能还须要先将文件名或者文件的后缀名传给接管方,这个难度不大,大师可自行添加


发送端ClientTcpSend.java:


View Code 

import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.net.InetSocketAddress;
import java.net.Socket;

public class ClientTcpSend {

public static void main(String[] args) {
int length = 0;
byte[] sendBytes = null;
Socket socket
= null;
DataOutputStream dos
= null;
FileInputStream fis
= null;
try {
try {
socket
= new Socket();
socket.connect(
new InetSocketAddress("127.0.0.1"33456),
10 * 1000);
dos
= new DataOutputStream(socket.getOutputStream());
File file
= new File("C:\\Users\\JP\\Pictures\\head.jpg");
fis
= new FileInputStream(file);
sendBytes
= new byte[1024];
while ((length = fis.read(sendBytes, 0, sendBytes.length)) > 0) {
dos.write(sendBytes,
0, length);
dos.flush();
}
}
finally {
if (dos != null
dos.close();
if (fis != null
fis.close();
if (socket != null
socket.close();
}
}
catch (Exception e) {
e.printStackTrace();
}
}
}



接管端ServerTcpListener.java:


View Code 

import java.net.*;
import java.io.*;

public class ServerTcpListener implements Runnable {

public static void main(String[] args) {

try {
final ServerSocket server = new ServerSocket(33456);
Thread th
= new Thread(new Runnable() {
public void run() {
whiletrue) {
try {
System.out.println(
"开端监听...");
Socket socket
= server.accept();
System.out.println(
"有链接");
receiveFile(socket);
}
catch (Exception e) {
}
}
}

});

th.run();
//启动线程运行
} catch (Exception e) {
e.printStackTrace();
}
}

public void run() {
}

public static void receiveFile(Socket socket) {

byte[] inputByte = null;
int length = 0;
DataInputStream dis
= null;
FileOutputStream fos
= null;
try {
try {

dis
= new DataInputStream(socket.getInputStream());
fos
= new FileOutputStream(new File("d:/cc.jpg"));
inputByte
= new byte[1024];
System.out.println(
"开端接管数据...");
while ((length = dis.read(inputByte, 0, inputByte.length)) > 0) {
System.out.println(length);
fos.write(inputByte,
0, length);
fos.flush();
}
System.out.println(
"完成接管");
}
finally {
if (fos != null
fos.close();
if (dis != null
dis.close();
if (socket != null
socket.close();
}
}
catch (Exception e) {

}

}
}






我了解你们的种族。它是由绵羊组成的。他们给少数人统治着,很少或者从来没有给多数人统治过。他们压抑了自己的感情和信仰,跟随着一小撮拼命喊叫的人。有时候那喊叫的人是对的,有时候是错的;可是那没关系,大伙儿总是因为你们永远并且始终是少数人的奴隶。从来没有一个国家,在那里大多数的为心坎里是忠于任何这种制度的。——马克吐温

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多