网络编程(1)—TCP
java.net 包中提供了两种常见的网络协议的支持:
TCP:TCP 是传输控制协议的缩写,它保障了两个应用程序之间的可靠通信。通常用于互联网协议,被称 TCP / IP。
TCP协议:
- 使用TCP协议前需要建立TCP链接形成数据传输通道
- 传输前采用三次握手方式,是可靠的
- TCP协议进行通信的两个应用进程:客户端、服务端
- 在连接中可进行大数据量的传输
- 传输完毕,释放链接,效率低
- Socket编程
- 通信的两端都要有Socket
- 网络通信其实就是Socket之间通信
- Socket允许程序把网络链接当成一个流,数据在两个Socket间通过IO传输
- 发起请求的一端叫客户端,等待请求的一端为服务端
*网络编程基本步骤:
TCP网络编程步骤:
- 1.创建客户端Socket
- 2.Socket调用getOutputStream()方法,创建输出流(输入流)
- 3.调用write()方法,写入数据
- 4.接受来自服务端的信息
*(若信息是双向传递的,即信息-来-回,而非单向传递,则需要在发送信息之后加上socket.shutdownOutput(),表示信息已发送完毕) - ———————————————
- 5.创建服务端ServerSocket
- 6.ServerSocket调用accept()方法,获取socket
- 7.Socket调用getInputStream(),获取输入流
- 8.接受来自客户端的信息
- 9.处理来自客户端是信息
- 10.返回信息给客户端
- 11.关闭连接资源
TCP编程实例:
1.实例一:
客户端给服务端发送消息,服务端把消息输出到控制台上(单向发送消息)
//信息单向传递
//客户端—发送消息
//服务端—接收消息
public class TestTCP {
//客户端
@Test
public void client(){
Socket socket = null;//初始化时要置空,否则在finally语句中,关闭连接时会报错
OutputStream os = null;
try {
//1.首先创建Socket,通过构造器指明服务端的IP地址以及接受程序的端口号
socket = new Socket(InetAddress.getByName("localhost"), 9090);
//2.Socket调用getOutputStream,创建流,发送数据
os = socket.getOutputStream();
//3.通过流,发送信息
os.write("我是客户端!".getBytes());
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
if(os != null){
//4.关闭链接
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(socket != null){
//5.关闭Socket链接
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
//服务端
@Test
public void server(){
ServerSocket ss = null;
Socket s = null;
InputStream is = null;
try {
//1.创建ServerSocket对象,通过构造器指明自身的端口号
ss = new ServerSocket(9090);
//2.调用accept(),返回一个Socket对象
s = ss.accept();
//3.调用Socket对象的getInputStream()获取一个从客户端发送过来的输入流
is = s.getInputStream();
//4.从流中读取数据,存到Byte[]数组中
byte[] b = new byte[20];
int len;
while((len = is.read(b)) != -1){
//先用String str接收
String str = new String(b, 0, len);
System.out.print(str);
System.out.println("收到来自"+s.getInetAddress().getHostName()+"的信息");
}
} catch (IOException e) {
e.printStackTrace();
}finally{
//关闭资源
if(is != null){
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(s != null){
try {
s.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(ss != null){
try {
ss.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
2.实例二:
- 客户端给服务端发送消息,服务端将消息打印到控制台上,同时发送“已收到信息”给客户端(一来一回消息传递)
*信息双向发送
*客户端:发送信息–接受信息
*客户端(信息发送完毕之后要显示的告诉服务端,发送完毕!)
*服务端:接受信息–发送信息
代码:
public class TestTCP1 {
//客户端
@Test
public void client(){
//1.创建Socket对象
Socket socket = null;
//2.输出流
OutputStream os = null;
//接收来自服务器的响应信息,输入流
InputStream is = null;
try {
//socket = new Socket(InetAddress.getLocalHost(), 8989);作用同下一样
socket = new Socket(InetAddress.getByName("127.0.0.1"), 8989);
os = socket.getOutputStream();
//发送信息,到服务器,写信息
String st = new Scanner(System.in).nextLine();
os.write(st.getBytes("GBK"));
socket.shutdownOutput();//输出完毕
is = socket.getInputStream();
int len;
byte[] b = new byte[20];
//接收信息,来自服务器的信息
System.out.print("客户端:已发送!\n");
while((len = is.read(b)) != -1){
String str = new String(b,0,len,"GBK");
System.out.print(str);
}
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
if(is != null){
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(os != null){
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(socket != null){
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
//服务端
@Test
public void server(){
//1.ServerSocket对象
ServerSocket ss = null;
Socket s = null;
//2。输入流对象
InputStream is = null;
//服务器响应,返回发送信息
OutputStream os = null;
try {
ss = new ServerSocket(8989);
s = ss.accept();
is = s.getInputStream();
byte[] b = new byte[20];
int len;
//接收客户端发送的消息
//System.out.print("");
while((len = is.read(b)) != -1){
String str = new String(b,0,len,"GBK");
System.out.print(str);
}
//发送信息
os = s.getOutputStream();
os.write("服务端已收到消息,啦啦啦啦啦啦啦!".getBytes("GBK"));
} catch (IOException e) {
e.printStackTrace();
}finally{
if(os != null){
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(is != null){
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(s != null){
try {
s.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(ss != null){
try {
ss.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
3.实例三:
- 从客户端发送文件到服务端,服务端保存到本地,并返回“发送成功!”给客户端,关闭相关链接
- 客户端:首先读文件进来到程序(入)—发送文件(出)—接受返回信息(入)
- 服务端:接受文件(入)—程序写出文件保存本地(出)—返回信息(出)
代码:
public class TestTCP2 {
//客户端
@Test
public void client(){
//1.创建Socket对象
Socket socket = null;
//2.创建文件对象,创建输入流对象(文件首先要加读入到程序中)
FileInputStream fis = null;
//3.输出流,进行文件传输
OutputStream os = null;
//6.接受发送成功后返回信息
InputStream is1 = null;
try {
socket = new Socket(InetAddress.getByName("127.0.0.1"),9898);
os = socket.getOutputStream();
fis = new FileInputStream(new File("file/1.jpg"));
//5.传输文件,文件首先要读入到程序(len = is.read(b)),再写出(os.write(b, 0, len);)
byte[] b = new byte[1024];
int len;
//文件读入到程序,并进行传输
while((len = fis.read(b)) != -1){
os.write(b, 0, len);
}
//6.发送完毕
socket.shutdownOutput();
//7.接收返回的信息
is1 = socket.getInputStream();
byte[] b1 = new byte[20];
int leng;
while((leng = is1.read(b1)) != -1){
String str = new String(b1, 0, leng);
System.out.println(str);
}
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
if(is1 != null){
try {
is1.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(os != null){
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(fis != null){
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(socket != null){
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
//服务端
@Test
public void server(){
//1.服务端ServerSocket
ServerSocket ss = null;
//2.调用accept()方法,返回一个Socket对象
Socket s = null;
//3.接受数据
InputStream is = null;
//4.创建文件对象,用于承载数据
FileOutputStream fos = null;
//6.返回信息
OutputStream os1 = null;
try {
ss = new ServerSocket(9898);
s = ss.accept();
is = s.getInputStream();
fos = new FileOutputStream(new File("file/1_1.jpg"));
//5.接收数据(len = is.read()),写出文件(os.write())
byte[] b = new byte[1024];
int len;
while((len = is.read(b)) != -1){
fos.write(b , 0 , len);
}
os1 = s.getOutputStream();
os1.write("发送成功!".getBytes());
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
if(os1 != null){
try {
os1.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(fos != null){
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(is != null){
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(s != null){
try {
s.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(ss != null){
try {
ss.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
网络编程(1)—TCP的更多相关文章
- C#网络编程之---TCP协议的同步通信(二)
上一篇学习日记C#网络编程之--TCP协议(一)中以服务端接受客户端的请求连接结尾既然服务端已经与客户端建立了连接,那么沟通通道已经打通,载满数据的小火车就可以彼此传送和接收了.现在让我们来看看数据的 ...
- 嵌入式linux的网络编程(1)--TCP/IP协议概述
嵌入式linux的网络编程(1)--TCP/IP协议概述 1.OSI参考模型及TCP/IP参考模型 通信协议用于协调不同网络设备之间的信息交换,它们建立了设备之间互相识别的信息机制.大家一定都听说过著 ...
- 【Linux网络编程】TCP网络编程中connect()、listen()和accept()三者之间的关系
[Linux网络编程]TCP网络编程中connect().listen()和accept()三者之间的关系 基于 TCP 的网络编程开发分为服务器端和客户端两部分,常见的核心步骤和流程如下: conn ...
- 【网络编程1】网络编程基础-TCP、UDP编程
网络基础知识 网络模型知识 OSI七层模型:(Open Systems Interconnection Reference Model)开放式通信系统互联参考模型,是国际标准化组织(ISO)提出的一个 ...
- 【转载】[基础知识]【网络编程】TCP/IP
转自http://mc.dfrobot.com.cn/forum.php?mod=viewthread&tid=27043 [基础知识][网络编程]TCP/IP iooops 胖友们楼主我又 ...
- Java 网络编程 -- 基于TCP 模拟多用户登录
Java TCP的基本操作参考前一篇:Java 网络编程 – 基于TCP实现文件上传 实现多用户操作之前先实现以下单用户操作,假设目前有一个用户: 账号:zs 密码:123 服务端: public c ...
- python网络编程05 /TCP阻塞机制
python网络编程05 /TCP阻塞机制 目录 python网络编程05 /TCP阻塞机制 1.什么是拥塞控制 2.拥塞控制要考虑的因素 3.拥塞控制的方法: 1.慢开始和拥塞避免 2.快重传和快恢 ...
- 网络编程——基于TCP协议的Socket编程,基于UDP协议的Socket编程
Socket编程 目前较为流行的网络编程模型是客户机/服务器通信模式 客户进程向服务器进程发出要求某种服务的请求,服务器进程响应该请求.如图所示,通常,一个服务器进程会同时为多个客户端进程服务,图中服 ...
- C#网络编程之--TCP协议(一)
TCP 是面向连接的传输协议 面向连接,其实就好比,A打电话给B,如果B接听了,那么A和B之间就的通话,就是面向连接的 TCP 是全双工的传输协议 全双工,这个理解起来也很简单,A打电话给B,B接听电 ...
- java 网络编程 UDP TCP
网络编程 网络编程主要用于解决计算机与计算机(手机.平板..)之间的数据传输问题. 网络编程: 不需要基于html页面就可以达到数据之间的传输. 比如: feiQ , QQ , 微信....网页编程: ...
随机推荐
- c++ 简单静态链表
所有结点(结构体变量)都是在程序中定义的,不是临时开辟的,也不能用完后释放,这种链表称为静态链表.对各结点既可以通过上一个结点的next指针去访问,也可以直接通过结构体变量名s1, s2, s3去访问 ...
- npm install 报错(npm ERR! errno -4048,Error: EPERM: operation not permitted,)解决方法
npm ERR! path E:\SouthernPowerGridProject\web_project\AutoOPS\autoops\node_modules\fsevents\node_mod ...
- uva12436 回头再做一次
线段树维护等差数列,结点维护首项+公差即可 #include <cstdio> #include <cstring> #include <algorithm> us ...
- 有关cookie
cookie 会话跟踪技术 <script> /* cookie 全称 会话跟踪技术. ...
- Android Monkey压力测试环境搭建及使用
Android Monkey压力测试学习笔记 步骤:下载SDK -> 解压进入SDK Manager下载系统 -> 配置环境变量 -> 创建虚拟设备或连接真机 -> 进入命令模 ...
- Myeclipse调试模式下自动提示变量值设置
1.Window->Preferences->Java->Editor->Hovers 将[Variable Values]选择即可,如果第一个[Combined Hover] ...
- Linux下apache支持PHP配置
https://www.cnblogs.com/qiuxiao/p/6815350.html https://www.cnblogs.com/polestar/p/6086552.html
- 多线程中实现ApplicationContextAware接口获取需要的bean,applicationContext.getBea未返回也未报错
唉,面试失败了有点难过. https://q.cnblogs.com/q/95168/#a_208239
- P3331 [ZJOI2011]礼物(GIFT)
题解: 首先转化为平面问题 对于每一个z,f(x,y)的值为它能向上延伸的最大高度 ...莫名其妙想出来的是n^4 以每个点作为右下边界n^3枚举再o(n)枚举左下边界计算z的最大值 然而很显然这种做 ...
- Codeforces 138C Mushroom Gnomes - 2 线段树
Mushroom Gnomes - 2 感觉没啥东西, 用线段树算算每个被覆盖的概率, 坑点是有很多个在同一个点. #include<bits/stdc++.h> #define LL l ...