Welcome![Sign In][Sign Up]
Location:
Search - java net

Search list

[WinSock-NDIS使用java控制HTTP协议客户端应用

Description:  Http客户端程序已集成在Java语言中,可以通过URLConnection类调用。遗憾的是,由于SUN没有公布Http客户程序的源码,它实现的细节仍是一个谜。本文根据HTTP协议规范,用Java.net.Socket类实现一个HTTP协议客户端程序。 -Http client program has been integrated into the Java language, URLConnection can call category. Unfortunately, because Sun has not announced Http client source code, it achieved the details are still a mystery. According to the HTTP protocol specification. with the realization of a category Java.net.Socket HTTP client program.
Platform: | Size: 6064 | Author: 郑描中 | Hits:

[JSP/Javajava-net-ant

Description: java版的网络蚂蚁软件,对学习很有帮助。
Platform: | Size: 958847 | Author: 中王 | Hits:

[ICQ-IM-Chat基于JAVA的ICQ系统的设计于实现

Description: 服务器与客户间通过套接口Socket(TCP)连接。在java中使用套接口相当简单,Java API为处理套接口的通信提供了一个类java.net.Socket.,使得编写网络应用程序相对容易.服务器采用多线程以满足多用户的请求,通过JDBC与后台数据库连接,并通过创建一个ServerSocket对象来监听来自客户的连接请求,默认端口为8080。-server and client presentation by Socket Interface (TCP) connections. Java use in presentation interface is quite simple, Java API sets to address the communications interface provides a type java.net.Socket. , Making the preparation of network applications relatively easily. Multi-threaded servers to meet the multi-user request, through JDBC and background database connections, and through the creation of a ServerSocket object from the client to monitor the connection request, the default port of 8080.
Platform: | Size: 1710416 | Author: 陈玉平 | Hits:

[EditBox用java 如何获得ip

Description: 是一个可以用java的基本类java.net.InetAddress做的程序实例-is a java can use the basic category java.net.InetAddress examples of procedures done
Platform: | Size: 1670 | Author: 马洁 | Hits:

[JSP/JavaJava聊天室程序

Description: 这个是服务器 import java.awt.*; import java.awt.event.*; import java.net.*; import javax.swing.*; public class UDPServerDemo extends JFrame{ int port=2345; //端口号 public UDPServerDemo(){ try{ byte[] buffer=new byte[256]; //缓冲区数组 DatagramSocket socket=new DatagramSocket(port); //实例化数据报Socket DatagramPacket packet; System.out.println("Server start..."); //输出运行信息 while (true){ packet=new DatagramPacket(buffer,buffer.length); //实例化数据报 socket.receive(packet); //接受请求 InetAddress target=packet.getAddress(); System.out.println("Received from"+target); //输出请求地址 int port=packet.getPort(); //得到接收端口 byte[] message="This is server,Who are you?".getBytes(); //服务器返回信息 packet=new DatagramPacket(message,message.length,target,port); //实例化数据报 socket.send(packet); //发送数据报 } } catch (Exception ex){ ex.printStackTrace(); //输出出错信息 } } public static void main(String[] args){ new UDPServerDemo(); } }
Platform: | Size: 1095119 | Author: 594353482@qq.com | Hits:

[Search EngineLucene.Net

Description: java全文检索-Full- Text Retrieval
Platform: | Size: 40960 | Author: 方红 | Hits:

[JSP/JavaJAVA的拼图游戏源代码

Description: 拼图游戏源代码,是一个多任务工作在网上的-puzzles and source code, is a multi-mission on the net
Platform: | Size: 14336 | Author: | Hits:

[ICQ-IM-Chat基于JAVA的ICQ系统的设计于实现

Description: 服务器与客户间通过套接口Socket(TCP)连接。在java中使用套接口相当简单,Java API为处理套接口的通信提供了一个类java.net.Socket.,使得编写网络应用程序相对容易.服务器采用多线程以满足多用户的请求,通过JDBC与后台数据库连接,并通过创建一个ServerSocket对象来监听来自客户的连接请求,默认端口为8080。-server and client presentation by Socket Interface (TCP) connections. Java use in presentation interface is quite simple, Java API sets to address the communications interface provides a type java.net.Socket. , Making the preparation of network applications relatively easily. Multi-threaded servers to meet the multi-user request, through JDBC and background database connections, and through the creation of a ServerSocket object from the client to monitor the connection request, the default port of 8080.
Platform: | Size: 1710080 | Author: 陈玉平 | Hits:

[SNMPnet-snmp-5.0.6.tar

Description: net-snmp提供了和SMTP(简单的网络管理)协议相关联的工具和库。包括:一个可扩展的代理,一个SNMP库,发送请求或设置代理信息的工具,生成和处理SNMP traps的工具等-net-snmp provided tools and library related with SMTP,including a extended agent and a snmp library.
Platform: | Size: 2209792 | Author: 定位 | Hits:

[EditBox用java 如何获得ip

Description: 是一个可以用java的基本类java.net.InetAddress做的程序实例-is a java can use the basic category java.net.InetAddress examples of procedures done
Platform: | Size: 1024 | Author: 马洁 | Hits:

[JSPJAVA项目开发实践-网上范例

Description: 来源:www.tqbooks.net包括八个项目 自制聊天室等-Source : www.tqbooks.net including eight homemade items such as Chat Room
Platform: | Size: 2286592 | Author: 妄言 | Hits:

[Otherjava8543535462

Description: 服务器与客户间通过套接口Socket(TCP)连接。在java中使用套接口相当简单,Java API为处理套接口的通信提供了一个类java.net.Socket.,使得编写网络应用程序相对容易.服务器采用多线程以满足多用户的请求,通过JDBC与后台数据库连接,并通过创建一个ServerSocket对象来监听来自客户的连接请求,默认端口为8080,然后无限循环调用accept()方法接受客户程序的连接-server and client presentation by Socket Interface (TCP) connections. Java use in presentation interface is quite simple, Java API sets to address the communications interface provides a type java.net.Socket. , Making the preparation of network applications relatively easily. Multi-threaded servers to meet the multi-user request, through JDBC and background database connections, and through the creation of a ServerSocket object from the client to monitor the connection request, the default port of 8080, then infinite loops call accept () method to accept client connections
Platform: | Size: 903168 | Author: | Hits:

[Internet-Network使用java控制HTTP协议客户端应用

Description:  Http客户端程序已集成在Java语言中,可以通过URLConnection类调用。遗憾的是,由于SUN没有公布Http客户程序的源码,它实现的细节仍是一个谜。本文根据HTTP协议规范,用Java.net.Socket类实现一个HTTP协议客户端程序。 -Http client program has been integrated into the Java language, URLConnection can call category. Unfortunately, because Sun has not announced Http client source code, it achieved the details are still a mystery. According to the HTTP protocol specification. with the realization of a category Java.net.Socket HTTP client program.
Platform: | Size: 6144 | Author: 郑描中 | Hits:

[Search Enginelucene.net-1.4.3.final-004-21Nov05.src

Description: Lucene是一个开放源程序的搜寻器引擎,利用它可以轻易地为Java软件加入全文搜寻功能-Lucene is an open source search engine. it can be easy to join the Java software by the search function
Platform: | Size: 1035264 | Author: whb1506 | Hits:

[Internet-NetworkjavaExamplescode

Description: java Net,聊天及多线程实例源代码-java Net, chatting and multithreading example source code
Platform: | Size: 7168 | Author: 郭香 | Hits:

[JSPjava.net

Description: 本书主要介绍了一些有关Java网络编程的基础知识,对想要利用Java进行网络编程的读者很有帮助。-This book introduces a number of Java network programming on the basis of knowledge, want to make use of Java network programming helpful readers.
Platform: | Size: 1209344 | Author: 刘林 | Hits:

[Internet-Networkjava_net_RTP.tar

Description: RTP正在成为一个广泛使用的传输实时数据的互联网标准协议。它提供了一种让参与者用RTCP协议对服务进行反馈的机制。这篇文档提出一个在Java中实现的独立的RTP平台。这个实现,能够以一个java.net.RTP包的形式,很容易的和一个应用程序链接一体,从而可以访问RTP和RTCP提供的所有传输层特性。这个包也提供了带外的初始化类,它们实现了一个最近初始化协议。这些类可以用来实现一个最近初始化服务端,具有同步最近加入客户端的能力
Platform: | Size: 134144 | Author: 温云龙 | Hits:

[JSP/Javajava-net-programe

Description: 此代码是《java网络编程实例》中的源代码-This code is " java network programming examples" of the source code
Platform: | Size: 8904704 | Author: px | Hits:

[Game ProgramJava小游戏连连看1.0

Description: 该报告中的程序是使用Java程序编写的连连看小游戏,能够进行休闲放松,锻炼细微观察能力以及思考能力。具有退出功能,再来一局功能,重新排列功能和游戏说明功能,特殊之处本程序加入了音乐功能。该程序分为两个类,主类是class lianliankan,副类是class AudioPlayer,主要运用了工具包 javax.swing, java.awt,java.applet, java.net,java.io和常用组件以及事件监听器等。(The program in the report is the use of Java programming Lianliankan games, leisure relaxation, exercise, subtle observation ability and thinking ability. With the exit function, another function, rearrangement function and game description function, special, this program added music function. The program is divided into two categories, the main category is class Lianliankan, the vice class is class AudioPlayer, the main use of the javax.swing toolkit, java.awt, java.applet, java.net, java.io and common components and event listener etc..)
Platform: | Size: 23552 | Author: lm521 | Hits:

[JSP/JavaJAVA-.Net-jobs

Description: Java,.NET面试题目,有需要做面试准备的可以参考。(If you are hunting for jobs.perhaps you will need to read this files.These files can help you find a better job.)
Platform: | Size: 502784 | Author: joe | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net