网络编程2

[b]-通过TCP协议实现图片文件上传的小程序
服务端:[/b]


package hcy;

import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.ServerSocket;
import java.net.Socket;

public class UploadPicServer {

public static void main(String[] args) throws Exception{

ServerSocket ss= new ServerSocket(10008);
Socket s= ss.accept();

InputStream in= s.getInputStream();
FileOutputStream fos= new FileOutputStream("server.mp3");

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();
}

}


[b]
客户端:[/b]

package hcy;

import java.io.FileInputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.Socket;

public class UploadPicClient {

public static void main(String[] args) throws Exception{

Socket s= new Socket("10.0.31.236",10008);
FileInputStream fis= new FileInputStream("client.mp3");
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();
}

}


[b]-实现客户端并发上传文件的程序[/b]


package hcy;

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

class PicThread implements Runnable{

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

public void run(){
//获取客户端的IP地址
String ip= s.getInetAddress().getHostAddress();
System.out.println("客户端IP地址:"+ip);

int count= 1;

try {
InputStream in= s.getInputStream();
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 UploadPicByThreadServer{

public static void main(String[] args) throws Exception{

ServerSocket ss= new ServerSocket(11002);
while(true){
Socket s= ss.accept();
new Thread(new PicThread(s)).start();
}
}
}

//多线程上传客户端程序
class UploadPicByThreadClient {

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.0.31.236",11002);


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();
}

}



[b]-通过学习TCP协议,我们自定义一个浏览器服务端
服务端:[/b]


package hcy;

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

//readme----第24天-04-网络编程(浏览器-自定义服务端)
public class ServerDemo {

public static void main(String[] args) throws Exception {

ServerSocket ss= new ServerSocket(10009);
Socket s= ss.accept();
String ip= 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='green' size='8'>你好-客户端,你的IP地址为:"+ip+"</font>");

s.close();
ss.close();

}

}



[b]-通过学习TCP协议,我们自定义一个浏览器客户端[/b]


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

public class MyIE {
public static void main(String[] args)throws Exception{

Socket s= new Socket("10.0.31.236",8080);

PrintWriter out = new PrintWriter(s.getOutputStream(),true);

out.println("GET /testWeb/demo.html HTTP/1.1");
out.println("Accept: */*");
out.println("Accept-Language: zh-cn");
out.println("Host:10.0.31.236:11004");
out.println("Connetion: 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();
}

}


[b]-学习UrlConnection类[/b]

package hcy;

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

public class UrlConnectionDemo {

public static void main(String[] args) throws Exception {

URL url= new URL("http://10.0.31.236:8080/testWeb/demo.html");

URLConnection conn= url.openConnection();
System.out.println(conn);

InputStream in= conn.getInputStream();

byte[] buf= new byte[1024];
int len= in.read(buf);

System.out.println(new String(buf,0,len));

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值