美文网首页
网络编程

网络编程

作者: cuteximi_1995 | 来源:发表于2017-09-04 08:41 被阅读0次

要想实现网络传输,需要考虑的问题有哪些?

1.1 如何才能准确的定位网络上的一台主机?
1.2 如何才能进行可靠的、高效的数据传输?

简单的说,你要知道数据的目的地(IP),你要用什么渠道传递数据(TCP/UDP);

java如何实现的网络通信

使用IP地址---定位一台主机 使用端口号---定位一个应用

1).如何创建一个InetAddress的对象?getByName(""); 比如:InetAddress inet = InetAddress.getByName("192.168.10.165");
2).如何获取本机的一个InetAddress的对象?getLocalHost()
域名:getHostName() ip:getHostAddress()

对应有协议

对于传输层而言:分为TCP UDP (了解)

TCP的编程:  Socket ServerSocket
例子:
1.客户端发送内容给服务端,服务端将内容打印到控制台上。

2.客户端发送内容给服务端,服务端给予反馈。

3.从客户端发送文件给服务端,服务端保存到本地。并返回“发送成功”给客户端。并关闭相应的连接。
代码实现:客户端

public class TestTCP{
    @Test
    public void client () {
        Socket socket = null;
        OutputStream outputSteam  = null;
        FileINputStream fileInputStream  = null;
        try {
            socket = new Socket(InetAddress.getByName("127.0.0.1"),9999);
            fileInputStream  = new FileInputStream(new File("1.jpg"));
            byte[] b =new byte[1024];
            int len;
            outputSream  = socket.getOutputStream();
            while ((len = fileInputStream.read(b)) != -1){
                    outputStream.write(b,0,len);
            }
            socket.shutdownOutput();//停止输出
            inputStream = socket.getInputStream();
            byte[] b1 = new byte[1024];
            int len1;
            while ((len1 =inputStream.read(b1) ) != -1){
                    String str = new String(b,0,len1);
                    System.out.println(str);
            }
        }catch(Exception e){
              e.printStackTrace();
        }finally{
           if (inputStream != null){
                try {
                    inputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (outputStream != null){
                try {
                    outputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (fileInputStream != null){
                try {
                    fileInputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (socket != null){
                try {
                    socket.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
} 

代码实现:服务端

@Test
public void server(){
 ServerSocket socket = null;
        InputStream inputStream = null;
        OutputStream outputStream = null;
        FileOutputStream fileOutputStream = null;
        Socket s = null;
        try {
            socket = new ServerSocket(9991);
            s = socket.accept();
            fileOutputStream = new FileOutputStream(new File("2.jpg"));
            byte[] b = new byte[1024];
            int len;
            inputStream = s.getInputStream();
            while ((len = inputStream.read(b)) != -1){
               fileOutputStream.write(b,0,len);
            }

            outputStream = s.getOutputStream();
            outputStream.write("我已经收到你发的文件了".getBytes());
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            if (outputStream != null){
                try {
                    outputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (inputStream != null){
                try {
                    inputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (fileOutputStream != null){
                try {
                    fileOutputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (s != null){
                try {
                    s.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (socket != null){
                try {
                    socket.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }


        }
}

相关文章

  • 网络基础介绍

    网络编程的两种 TCP socket编程,是网络编程的主流。之所以叫Tcp socket编程,是因为底层是基于Tc...

  • Python TCP编程

    Python网络编程之TCP 一、TCP协议 TCP协议,传输控制协议(Transmission Control ...

  • Linux网络编程篇之ICMP协议分析及ping程序实现

    Linux网络编程系列: Linux网络编程篇之Socket编程预备知识 Linux网络编程篇之TCP协议分析及聊...

  • socket通讯编程

    这一块属于网络编程,主要是学习TCP/IP四层的网络体系结构,学习TCP编程和UDP编程。 java.net中 一...

  • socket网络编程-基础知识

    什么是网络编程 网络编程的本质是两个设备之间的数据交换。 Socket、TCP/IP和Udp TCP 传输控制协议...

  • Node.js中的网络编程

    实验简介 此实验主要讲解TCP和UDP的网络编程,net模块提供了一个异步网络包装器,用于TCP网络编程,它包含了...

  • 网络编程面试题总结

    网络编程知识→ tcp、udp、http、https 等常用协议tcp协议:传输控制协议(TCP,Transmis...

  • Golang网络编程TCP连接

    Golang网络编程 TCP编程编写服务端package mainimport ( "bufio" "fmt"...

  • 网络编程-TCP

    1.tcp的相关介绍 udp通信模型: udp通信模型中,在通信开始之前,不需要建立相关的链接,只需要发送数据即可...

  • 网络编程

    要想实现网络传输,需要考虑的问题有哪些? 1.1 如何才能准确的定位网络上的一台主机?1.2 如何才能进行可靠的、...

网友评论

      本文标题:网络编程

      本文链接:https://www.haomeiwen.com/subject/zipsjxtx.html