黑马程序员—Java基础—网络编程2

来源:互联网 发布:淘宝客手机源码 编辑:程序博客网 时间:2024/06/16 10:32


------- android培训、java培训、期待与您交流! ----------

网络编程2

一、TCP-上传图片

需求:上传图片。
客户端。
1,服务端点。
2,读取客户端已有的图片数据。
3,通过socket 输出流将数据发给服务端。
4,读取服务端反馈信息。
5,关闭。

import java.io.*;import java.net.*;class  PicClient{public static void main(String[] args)throws Exception {Socket s = new Socket("10.5.29.145",10007);FileInputStream fis = new FileInputStream("c:\\1.jpg");OutputStream out = s.getOutputStream();byte[] buf = new byte[1024];int len = 0;while((len=fis.read(buf))!=-1){out.write(buf,0,len);}//告诉服务端数据已写完s.shutdownOutput();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();}}//服务端class  PicServer{public static void main(String[] args) throws Exception{while{//这种写法只能一次链接一个客户端,因为链接成功后,执行后续代码至数据节后完毕//再次循环执行时,才能建立新的链接ServerSocket ss = new ServerSocket(10007);Socket s = ss.accept();InputStream in = s.getInputStream();FileOutputStream fos = new FileOutputStream("server.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();}}

二、客户端并发上传图片

客户端。
1,服务端点。
2,读取客户端已有的图片数据。
3,通过socket 输出流将数据发给服务端。
4,读取服务端反馈信息。
5,关闭。
import java.io.*;import java.net.*;class  PicClient{public static void main(String[] args)throws Exception {if(args.length!=1){System.out.println("请选择一个jpg格式的图片");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("10.5.29.145",10007);FileInputStream fis = new FileInputStream(file);OutputStream out = s.getOutputStream();byte[] buf = new byte[1024];int len = 0;while((len=fis.read(buf))!=-1){out.write(buf,0,len);}//告诉服务端数据已写完s.shutdownOutput();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 PicThread implements Runnable{private Socket s;PicThread(Socket s){this.s = s;}public void run(){int count = 1;String ip  = s.getInetAddress().getHostAddress();try{System.out.println(ip+"....connected");            //定义网络输入流InputStream in = s.getInputStream();//File dir =  new File("d:\\pic");            //通过将给定路径名字符串转换为抽象路径名来创建一个新 File 实例File file = new File(ip+"("+(count)+")"+".jpg");while(file.exists())file = new File(ip+"("+(count++)+")"+".jpg");            //定义问价输出流,节后网络输入流内容FileOutputStream fos = new FileOutputStream(file);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 (Exception e){throw new RuntimeException(ip+"上传失败");}}}class  PicServer{public static void main(String[] args) throws Exception{ServerSocket ss = new ServerSocket(10007);while(true){Socket s = ss.accept();new Thread(new PicThread(s)).start();}//ss.close();}}

三、客户端并发登陆

客户端通过键盘录入用户名。
服务端对这个用户名进行校验。

如果该用户存在,在服务端显示xxx,已登陆。
并在客户端显示 xxx,欢迎光临。

如果该用户存在,在服务端显示xxx,尝试登陆。
并在客户端显示 xxx,该用户不存在。

最多就登录三次。

import java.io.*;import java.net.*;class  LoginClient{public static void main(String[] args) throws Exception{Socket s = new Socket("10.5.29.145",10008);BufferedReader bufr = new BufferedReader(new InputStreamReader(System.in));PrintWriter out = new PrintWriter(s.getOutputStream(),true);BufferedReader bufIn =new BufferedReader(new InputStreamReader(s.getInputStream()));for(int x=0; x<3; x++){String line = bufr.readLine();if(line==null)break;out.println(line);String info = bufIn.readLine();System.out.println("info:"+info);if(info.contains("欢迎"))break;}bufr.close();s.close();}}class UserThread implements Runnable{private Socket s;UserThread(Socket s){this.s = s;}public void run(){String ip = s.getInetAddress().getHostAddress();System.out.println(ip+"....connected");try{for(int x=0; x<3; x++){BufferedReader bufIn = new BufferedReader(new InputStreamReader(s.getInputStream()));String name = bufIn.readLine();//如何客户端输入Ctrl+C,结束循环if(name==null)break;BufferedReader bufr = new BufferedReader(new FileReader("user.txt"));PrintWriter out = new PrintWriter(s.getOutputStream(),true);String line = null;boolean flag = false;while((line=bufr.readLine())!=null){if(line.equals(name)){flag = true;break;}}if(flag){System.out.println(name+",已登录");out.println(name+",欢迎光临");break;}else{System.out.println(name+",尝试登录");out.println(name+",用户名不存在");}}s.close();}catch (Exception e){throw new RuntimeException(ip+"校验失败");}}}class  LoginServer{public static void main(String[] args) throws Exception{ServerSocket ss = new ServerSocket(10008);while(true){Socket s = ss.accept();new Thread(new UserThread(s)).start();}}}


四、浏览器客户端——Tomcat服务端
演示客户端和服务端。

1,
客户端:浏览器 (telnet)
服务端:自定义。

2,
客户端:浏览器。
服务端:Tomcat服务器。

3,
客户端:自定义。(图形界面)
服务端:Tomcat服务器。
import java.net.*;import java.io.*;class ServerDemo {public static void main(String[] args) throws Exception{ServerSocket ss = new ServerSocket(11000);Socket s = ss.accept();System.out.println(s.getInetAddress().getHostAddress());//InputStream in = s.getInputStream();//byte[] buf = new byte[1024];//int len = in.read(buf);//System.out.println(new String(buf,0,len));PrintWriter out = new PrintWriter(s.getOutputStream(),true);out.println("<font color='red' size='7'>客户端你好</font>");s.close();ss.close();}}

五、自定义浏览器——Tomcat服务端

import java.io.*;import java.net.*;class MyIE {public static void main(String[] args)throws Exception {Socket s = new Socket("169.254.185.216",8080);PrintWriter out = new PrintWriter(s.getOutputStream(),true);out.println("GET /myweb/demo.html HTTP/1.1");out.println("Accept: *");out.println("Accept-Language: zh-cn");out.println("Host: 169.254.185.216:11000");out.println("Connection: closed");out.println();out.println();BufferedReader bufr = new BufferedReader(new InputStreamReader(s.getInputStream()));String line = null;while((line=bufr.readLine())!=null){System.out.println(line);}s.close();}}

浏览器发送数据:
http://169.254.185.216:11000/myweb/demo.html
表示访问169.254.185.216:11000主机下,myweb文件夹中的demo.heml文件
GET /myweb/demo.html HTTP/1.1
Accept: application/x-shockwave-flash, image/gif, image/x-xbitmap, image/jpeg, i
mage/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application
/msword, application/QVOD, application/QVOD,
Accept-Language: zh-cn
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0
.50727)
Host: 192.168.1.254:11000
Connection: Keep-Alive






0 0