- 浏览: 295577 次
- 性别:
- 来自: 广州
文章分类
Server:
import java.io.InputStream; import java.io.OutputStream; import java.net.ServerSocket; import java.net.Socket; public class TcpServer { public static void main(String[] args) throws Exception { ServerSocket serversocket = new ServerSocket(8000); Socket socket = null; InputStream ips = null; OutputStream ops = null; byte[] recvbuffer = new byte[1024]; byte[] sendbuffer = new byte[1024]; byte[] content = "Hello, This is server!".getBytes(); System.arraycopy(content, 0, sendbuffer, 0, content.length); long index = 0, length = 0; for (;;) { try { socket = serversocket.accept(); ips = socket.getInputStream(); ops = socket.getOutputStream(); System.out.println("Connected From: " + socket.getInetAddress() + ":" + socket.getPort()); index = 0; length = 0; long current = System.currentTimeMillis(); for (;;) { // Thread.sleep(1); int available = ips.available(); if (available >= recvbuffer.length) { ips.read(recvbuffer); length += recvbuffer.length; index++; current = System.currentTimeMillis(); System.out.print("\rReceive: " + index + ", Length: " + length); if (!new String(recvbuffer).trim().equalsIgnoreCase( "Hello, This is client!")) { System.err.println("Content Error!"); } } else { if (System.currentTimeMillis() - current > 3000) { ops.write(sendbuffer); } } } } catch (Exception e) { e.printStackTrace(); } finally { System.out.println("Total Length: " + (length + ips.available())); if (ops != null) { ops.flush(); ops.close(); } if (ips != null) { ips.close(); } if (socket != null) { socket.close(); } } } } }
Client:
import java.io.InputStream; import java.io.OutputStream; import java.net.InetAddress; import java.net.Socket; public class TcpClient { public static void main(String[] args) throws Exception { if (args.length < 3) { System.out .println("Usage:java TcpClient ServerIP ServerPort SendCount"); return; } Socket socket = new Socket(InetAddress.getByName(args[0]), Integer.parseInt(args[1])); InputStream ips = socket.getInputStream(); OutputStream ops = socket.getOutputStream(); byte[] recvbuffer = new byte[1024]; byte[] sendbuffer = new byte[1024]; byte[] content = "Hello, This is client!".getBytes(); System.arraycopy(content, 0, sendbuffer, 0, content.length); long index = 0, length = 0; System.out.println("Send start..."); while (true) { // Thread.sleep(1); ops.write(sendbuffer); index++; length += sendbuffer.length; System.out.print("\rSend: " + index + ", " + (index * 100 / Integer.parseInt(args[2])) + "%" + ", Length: " + length); if (ips.available() >= recvbuffer.length) { ips.read(recvbuffer, 0, recvbuffer.length); if (!new String(recvbuffer).trim().equalsIgnoreCase( "Hello, This is server!")) { System.err.println("Content Error!"); } } if (index >= Integer.parseInt(args[2])) { break; } } ops.flush(); ops.close(); ips.close(); socket.close(); } }
发表评论
-
java IP地址转换
2013-03-28 09:05 1030/**将给定的字节数组转换成IPV4的十进制分段表示格式的ip ... -
ScreenCapture
2012-08-02 11:59 1039import java.awt.Rectangle; impo ... -
UdpSpeedTest
2012-06-04 18:26 1009import java.net.DatagramPacket ... -
PieChart3DDemo3.java
2012-04-24 13:41 1168import java.awt.BorderLayout ... -
java modbus
2012-04-06 13:54 1240modbus -
16款Java图表组件
2012-04-06 13:50 2481开源Java图表组件 1. JFreeChar ... -
java md5
2012-02-17 14:29 830import java.security.MessageDig ... -
FreeModbus
2012-02-14 11:15 858http://freemodbus.berlios.de/ap ... -
java 获取当前日期与时间
2012-01-19 16:52 959time = new SimpleDateFormat(&q ... -
java string sort
2012-01-19 16:46 911Arrays.sort(filelist, new Co ... -
java run dos command
2012-01-19 16:44 734Runtime.getRuntime().exec(" ... -
eclipse plugs
2012-01-17 16:47 762http://checkthread.org/eclipse- ... -
java
2012-01-12 17:18 959BufferedWriter out = new Buf ... -
Jpcap
2012-01-04 19:36 1013Jpcap is a Java library for ... -
java 获取网卡信息
2011-12-21 15:25 1200public static void main(Stri ... -
java 多网卡绑定例程
2011-12-21 15:01 1630单播: DatagramSocket s = n ... -
java multicast demo
2011-12-20 08:46 878import java.net.DatagramPack ... -
JavaService把java程序发布为windows服务
2011-12-09 14:45 990http://forge.ow2.org/projects/j ... -
chilkatsoft
2011-11-30 17:23 959http://www.chilkatsoft.com/ -
csv
2011-11-30 16:40 952Java CSV is a small fast open s ...
相关推荐
标题中的“Simple-Windows-Socket-Server-Example.rar_simple_socket server”表明这是一个关于Windows平台上的简单Socket服务器示例的压缩文件。Socket编程是网络编程的基础,它允许程序通过网络发送和接收数据。在...
标题中的"A simple example of exchanging data across a network using t"似乎是指使用特定技术(可能是WinSock)在网络间交换数据的一个简单示例。这个示例可能是针对初学者或开发者,旨在教授如何利用网络通信类...
Simple tcp source example for your reference It is a visual studio mfc example
4. **GIOP(General Inter-ORB Protocol)和IIOP(Internet Inter-ORB Protocol)**:GIOP是ORB间通信的基础协议,而IIOP是GIOP在TCP/IP上的具体实现,用于传输CORBA消息。 5. **Servant和Stub**:Servant是服务器...
套接字部分旨在说明使用TCP / IP进行简单的通信是多么简单。 系统显示了如何通过网络交换和处理String。 在谈论大型应用程序时,这还不够,但是,请不要忘记HTTP使用字符串。 该项目包含服务器和客户端。 Main类中...
Socket是TCP/IP协议族的一部分,它是两台计算机之间通信的端点。在Java中,`java.net.Socket`类代表客户端套接字,而`java.net.ServerSocket`类则用于服务器端,监听并接受来自客户端的连接。 1. **创建...
### SMTP协议简介 (Simple Mail Transfer Protocol) SMTP协议是互联网上用于传输电子邮件的标准协议之一,它在TCP/IP协议簇中占有重要地位。SMTP协议定义了一系列规则和命令,使得邮件客户端能够将邮件发送到邮件...
**Example 1: Setting Up a Simple Network** Suppose you want to simulate a simple network consisting of two hosts connected by a router. Here’s how you can set up the simulation: 1. **Define Hosts**...
本文将深入探讨如何使用C#实现应用程序发送邮件以及同步TCP接收邮件的功能,这涉及到网络通信中的SMTP(Simple Mail Transfer Protocol)和POP3(Post Office Protocol version 3)协议。 首先,让我们来理解SMTP...
同样,电脑发送电子邮件功能是通过Simple Mail Transfer Protocol (SMTP) 实现的。在LabVIEW中,可以使用SMTP服务器通信库,创建SMTP客户端,设置服务器地址、端口、用户名、密码等相关参数,然后构建邮件内容,...
* Provides code for all example programs via a companion Web site to let the reader see the important objects and methods in context and to understand the purpose of each line of code.
### 光洋PLC例程源码Simple Incoder program example 205 series #### 知识点概览 本文将详细介绍与“光洋PLC例程源码Simple Incoder program example 205 series”相关的知识点,包括光洋PLC的基本概念、Simple ...
"A simple event-based WebSocket library for MATLAB" 提供了一种简单易用的解决方案,利用事件驱动模型来处理WebSocket的连接、消息发送和接收。 该库的核心概念可能包括以下几个部分: 1. **连接管理**:库应该...
这个命令会使用 Simple Build Tool (SBT) 构建工具,进入 "server" 子项目,并执行运行命令。SBT 是 Scala 开发的常用构建工具,它允许我们管理依赖、编译代码以及运行应用程序。 一旦服务器启动,我们可以通过 `nc...
Simple Simulation Example A basic NS simulation involves creating nodes, connecting them with links, and configuring network components like traffic sources and routers. For instance, you could set up...
o CurrPorts now displays a simple error message if it fails to close one or more TCP connections. * Version 2.01: o The 'Remote Address' and 'Local Address' columns are now sorted by the IP ...
Advanced This example shows how to create a proxy server to redirect the calls to another server without having to recreate the RODL file, thus allowing the use of the same types of the original ...
- 在Java中实现Flint协议解析和处理,通常需要对网络编程有深入理解,包括TCP/IP协议栈、数据包结构和解析算法。 - 使用Flint协议的播放器可能具备优化的带宽利用和适应性流媒体能力,确保在不同网络条件下能流畅...