客户端上传到服务端图片,服务端把图片保存到指定的文件中

这篇博客展示了如何使用Java实现客户端将图片上传到服务端,并在服务端将图片保存到指定文件。客户端通过Socket发送图片数据,服务端接收数据并保存为BMP格式文件。服务端有两种实现方式:一对一上传和多线程上传,以支持并发处理多个客户端请求。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >




import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.ServerSocket;
import java.net.Socket;


/**
 * 需求:上传图片
 *  客户端: 1:服务端点 
 *  2:读取客户端已有的图片数据 
 *  3:通过socket输出流将数据发给服务端
 *   4:读取服务端反馈信息
 *    5:关闭
 * 服务端:1:第一种使用一对一的上传,不能实现多线程。
 * 2:第二种,通过实现多线程来上传图片。
 *
 */
// 客户端
public class UploadPicDemo {
public static void main(String[] args) throws Exception {
if (args.length != 1) {
System.out.println("请选择一个bmp格式的图片");
return;
}
File file = new File(args[0]);
if (!(file.exists() && file.isFile())) {// 指定文件
System.out.println("该文件有问题,要么不存在,要么不是文件");
return;
}
if (!(file.getName().endsWith(".jpg"))) {// 指定文件格式
System.out.println("图片格式错误,请重新选择");
return;
}
if (file.length() > 1024 * 1024 * 5) {// 指定文件的大小
System.out.println("文件过大,没安好心");
return;
}
Socket s = new Socket("127.0.0.1", 8888);
FileInputStream fis = new FileInputStream(file);
// FileInputStream fis = new FileInputStream("d:\\1.bmp");
// 只能上传指定的图片不能改变
OutputStream out = s.getOutputStream();
byte[] buf = new byte[1024];
int len = 0;
while ((len = fis.read(buf)) != -1) {
out.write(buf, 0, len);
}
// 告诉服务端数据已经写完
s.shutdownInput();
InputStream in = s.getInputStream();
byte[] bufin = new byte[1024];
int num = in.read(bufin);
System.out.println(new String(bufin, 0, num));
fis.close();
s.close();
}
}


// 服务端:针对一对一的上传
/*
 * 这个服务端有个局限,当A客户连接上以后,被服务端获取到,服务端执行具体流程,这时B客户
 * 端连接只能等待,因为服务端还没有处理完A客户端的请求,还有循环回来执行下一次accept方法。 所以暂时获取不到B客户端对象。
 * 那么为了可以让更多的个客户端同时并发访问服务端,那么服务端最好就是将每个客户端 封装成一个单独的线程中,这样就可以同时处理多个客户端请求
 * 
 * 如何定义线程? 
 * 只要明确了每一个客户端要在服务端执行的代码即可。将该代码存入run方法中
 *
 * 
 */


class PicServer1 {
public static void main(String[] args) throws Exception {
ServerSocket ss = new ServerSocket(8888);
Socket s = ss.accept();
// 服务端打印一下IP地址
String ip = s.getInetAddress().getHostAddress();
System.out.println(ip + "is connected");
InputStream in = s.getInputStream();
FileOutputStream fos = new FileOutputStream("d:\\1.bmp");
byte[] buf = new byte[1024];
int len = 0;
while ((len = in.read(buf)) != -1) {
fos.write(buf, 0, len);
}
OutputStream out = s.getOutputStream();
out.write("上传成功".getBytes());
fos.close();
s.close();
ss.close();
}


// 第二种服务端多线程服务
class PicServer2 {
public void main(String[] args) throws Exception {
ServerSocket ss = new ServerSocket(8888);
while (true) {
Socket s = ss.accept();
new Thread(new PicThread(s)).start();


}
}
}


// 多线程
class PicThread implements Runnable {
private Socket s;


public PicThread(Socket s) {
super();
this.s = s;
}


@Override
public void run() {
InputStream in;
// 服务端打印一下IP地址
String ip = s.getInetAddress().getHostAddress();
System.out.println(ip + "is connected");
int count = 0;
try {
File file = new File(ip + "(" + (count++) + ")" + ".bmp");
while (file.exists()) {
file = new File(ip + "(" + (count++) + ")" + ".bmp");


}
in = s.getInputStream();
FileOutputStream fos = new FileOutputStream("d:\\1.bmp");
byte[] buf = new byte[1024];
int len = 0;
while ((len = in.read(buf)) != -1) {
fos.write(buf, 0, len);
}
OutputStream out = s.getOutputStream();
out.write("上传成功".getBytes());
fos.close();
s.close();
} catch (IOException e) {
throw new RuntimeException(ip + "上传失败");
}
}


}
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值