您的位置:首页 > 其它

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

2016-03-23 11:50 567 查看
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 + "上传失败");
}
}

}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: