zoukankan      html  css  js  c++  java
  • socket communication between a Java and/or C++ programs (现成的程序)

    Java / C++ Socket Class

    If you need to do socket communication between a Java and/or C++ programs, you've come to the right place.  I've developed a fairly basic class that can be used to communicate between Java applications and C++ programs via a socket connection.  There are client and server classes for both Java and C++, so you could use these classes for communication between the same language or between languages.

    The classes below have been tested and seem to work.  You must of course balance your sends and receives otherwise it will stall.  You will have to determine whether the byte order needs to be reversed between your client and server.  It appears that byte order will need to reversed if one side is Java and the other side is C++.  If both sides are the same language, you should be okay without reversing them. 

    Efficiency isn't the best.  I worked some time to get the classes to perform as well as they do.  Sending and receiving of bytes is fairly fast, but other types require the Java side to convert the data array to an array of bytes.  This was necessary in order to get the data to be sent in bigger, more efficient blocks.  I suspect the conversion could be done faster than my stream technique, but I have not pursued it.

    The fastest method I found to send data was using the datagram methods.  Be careful, since this is not a guaranteed delivery form of communication, packets can and do get lost in transit.  You'll need to do some sort of communication via the normal send and receive routines to provide resending of missing packets.

    For more details about the implementation, there is a section in the my thesis project paper.

    A lot of the C code for the socket routines I lifted from the excellent tutorial: Beej's Guide to Network Programming.   For a starting point on the Java code, I used the book: Java: How to Program, Deitel & Deitel.

    Client.java Socket client written in Java
    Server.java Socket server written in Java
    client.cpp Socket client written in C++
    client.h Header file for the C++ client
    server.cpp Socket server written in C++
    server.h Header file for the C++ server
    Makefile Makefile for all for the above and the test programs
    server_test.cpp Simple test program of the C++ server
    client_test.cpp Simple test program of the C++ client
    java_server_test.java Simple test program of the Java server
    java_client_test.java Simple test program of the Java client
    socket.tar All the above in a convenient tar file
    swarm_monitor.tar A example using the socket library to measure performance on an MPI network.
  • 相关阅读:
    JavaScript学习
    jenkins 的 ProcessTreeKiller----无法启动子进程的解决办法
    Zend studio 10.6 配置XDEBUG
    建立php开发环境(XAMPP + Xdebug+Zend Studio)
    [转]linux(centos)搭建SVN服务器
    【转】单身是最好的增值时期
    Hadoop核心组件
    数据节点中数据库的存储
    HDFS
    CSS:IE,Chrome,Firefox兼容性和CSS Hack(转载)
  • 原文地址:https://www.cnblogs.com/cy163/p/1158498.html
Copyright © 2011-2022 走看看