搜索资源列表
JavaPXML-RSS
- 一、使用说明 程序入口命令 cd F:\java\2003012142 set classpath=classes javac -d classes src/RssParser.java java RssParser 操作 互动部分在左侧的树 左键选择---状态栏显示RSS的URL 右键弹出---该对象的方法 二、功能 简单快速查看网上的RSS资源,支持RSS2.0版本。 可以添加、删除RSS,可
wangluobianchengshiyan(9)
- 开发一个多线程程序同时对一个链表进行节点插入。 (1)要求算法正确 (2)该系统要求使用头插法,插入结果正确,并输出结果。 (3)要求模拟出多线程程序资源共享问题。在本程序中体现为链表节点的丢失。 (4)给出正确的链表受到保护的实现。要求使用线程同步机制。-At the same time develop a multi-threaded program into a linked list node. (1) request algorithms correctly (2) T
JAVAClient_Server
- 1) 利用InetAddress类的方法获取主机的名称和IP地址。 2) 利用URL类获取网络资源。 3) 使用Socket编程:客户机发送数据到服务器,服务器将接收到的数据返回给客户机,运用多线程机制,实现服务器同时处理多个客户机的请求。 4) 使用UDP编程:客户机发送数据到服务器,服务器将接收到的数据返回给客户机, 实现一个模拟电子邮件的发送和接收的UDP程序。 -1) using InetAddress class method to get the host name
Java
- 多线程技术以及多点连接在提高系统吞吐率、有效利用系统资源、改善用户任务之间的通信效率等方面有着显著作用。本文采用地图分层和图面分割的方法以及Java 多线程和多点连接技术实现了WebGIS 空间数据的高效传输。-Based on the analysis of Java thread technology and WebGIS architecture,this paper discuss the way to apply Java Multi- thread and Multi- poin
java_High-level_programming
- Java多线程机制,Swing GUI组件,流式输入输出与文件处理,用Java实现底层网络通信,Java程序对网上资源的访问-Java multi-threading mechanism, Swing GUI components, input and output stream and document processing, with the realization of the underlying Java Network Communications, Java program to
download_tool
- 是一个多线程下载工具,很小巧,很方便,适合小量资源下载-Is a multi-threaded downloading tool, is very small, very convenient and suitable for a small amount of resources to download
Java-run
- 1. 有一个南北向的桥,只能容纳一个人,现桥的两边分别有10人和12人,编制一个多线程程序让这些人到达对岸,每个人用一个线程表示,桥为共享资源。 2. 利用多线程编写龟兔赛跑程序。 乌龟:速度慢,休息时间短; 兔子:速度快,休息时间长; -1. There is a north-south bridge can only accommodate one person is on both sides of the bridge 10 and 1
javaDownLow
- 一款java的多线程下载器,能够分析资源的UML是否正确,下载速度的计算-A multi-threaded download manager java, to analyze whether the correct UML resources, download the speed of calculation, etc.
java
- 有一个南北向的桥,只能容纳一个人,现桥的两边分别有10人和12人,编制一个多线程程序让这些人到达对岸,每个人用一个线程表示,桥为共享资源-A north-south bridge can only accommodate one person, on both sides of the bridge is now 10 and 12 respectively, the preparation of a multi-threaded program to allow these people to
wangluobianchengshiyan(2)
- 有一个南北向的桥,只能容纳一个人,现桥的两边分别有10人和12人,编制一个多线程程序让这些人到达对岸,每个人用一个线程表示,桥为共享资源。-A north-south bridge can only accommodate one person, on both sides of the bridge is now 10 and 12 respectively, the preparation of a multi-threaded program to allow these people t
JAVa1
- 线程技术是JAVA应用的主要技术,多线程具有并行机制、交互性能、实时控制等性能。主要的优势有提高界面程序响应速度和充分利用系统资源。通过使用线程,可以将需要大量时间完成的流程在后台完成 而通过在一个程序内部同时执行多个流程,可以充分利用CPU等系统资源,从而最大限度地发挥硬件的性能 在现在的项目开发中,多线程编程技术获得了广泛的使用。本文从线程概念、属性、实现方法、优劣势来介绍JAVA的多线程技术。-JAVA application thread technology is the main t
JavaWebGIS
- 目前空间数据的传输效率低下已成为制约WebGIS发展的主要瓶颈之一。多线程技术以及多点连接在提高系统吞吐率、有效利用系统资源、改善用户任务之间的通信效率等方面有着显著作用。本文采用地图分层和图面分割的方法以及Java多线程和多点连接技术实现了WebGIS空间数据的高效传输。-Transmission of the current inefficient spatial data has become a major bottleneck restricting the development o
Ptest
- 多线程,组播,通过组播实现p2p中的资源发现,单播进行资源请求。-Multi-threaded, multicast, multicast to achieve through the p2p resource discovery, resource unicast requests.
Muti_Thread_Download
- 多线程下载 开发工具: MyEclipse8.x、JDK1.6 项目描述: 该系统实现了资源的下载、断点续传、删除任务、打开,采用仿照迅雷的模式用表格显示下载任务的目录、文件大小,进度(采用进度条显示),开始时间和结束时间,文本域显示下载的详细信息。 -failed to translate
downFiels
- 解析网页中的资源,并采用多线程方式下载。可以下载的文件格式为:http://*/*/*/.../.*-file download mechine
javaclock
- 在多线程编程里面一个重要的概念是锁定,如果一个资源是多个线程共享的,为了保证数据的完整性, 在进行事务性操作时需要将共享资源锁定,这样可以保证在做事务性操作时只有一个线程能对资源进行操作, 从而保证数据的完整性 -In multithreaded programming is an important concept inside the lock, if a resource is shared by multiple threads, in order to ensure data in
Licensing
- JAVA发牌源代码,线程的开启关闭,资源的访问于,多线程的调度-JAVA source code licensing, open and close the thread, access to resources in, multi-thread scheduling
Java-multithreaded-HTTP-and-download
- java多线程续传下载源码;只需指定下载资源地址,文件名及下载的文件线程,即可执行下载任务,对系统资源的占用很少,值得下载-Java multithreaded HTTP download the source code only need to specify the file name and download address, download the file can be executed threads, download task, the occupation of syste
Muti_Thread_Download
- 多线程下载开发工具,项目描述:该系统实现了资源的下载、断点续传、删除任务、打开,采用仿照迅雷的模式用表格显示下载任务的目录、文件大小,进度(采用进度条显示),开始时间和结束时间,文本域显示下载的详细信息-Multi-threaded download development tools, Project Descr iption: The system has downloaded resources, HTTP, delete tasks, open, using modeled modes
picturesViewer
- 一个功能比较强大的图片查看器,功能涵盖查看图片,管理图片资源,图形化界面,友好,速度较快,使用了多线程加载图片,目录树也是动态加载的-A function of more powerful image viewer, features cover to view pictures, pictures resource management, graphical interface, and friendly, faster, using a multi-threaded load images,