【编者按】网学网JAVA频道为大家收集整理了“Java多线程与线程安全实践——基于Http协议的断点续传“提供大家参考,希望对大家有所帮助!
包括论文,设计,论文字数:11613,页数:30
摘 要
现实世界中的很多过程都具有多条线索同时动作的特性。Java语言的一大特性就是内置对多线程的支持。多线程是指同时存在几个执行体,按几条不同的执行线索共同工作的情况,它使得编程人员可以很方便地开发出具有多线程功能、能同时处理多个任务的功能强大的应用程序。一些同时运行的线程需要共享数据,因此每个线程就必须要考虑其它与它一起共享数据的线程的状态与行为,这就是线程安全的问题。为了对Java多线程与线程安全机制进行研究与实践,特此设计一个基于Http 协议的支持多线程断点续传的下载程序。此下载程序由下载任务模块、设置模块以及系统帮助模块组成。通过Apache Jakarta Commons下的子项目HttpClient包对Http协议进行支持,从而下载服务器端的资源。程序提供多线程断点续传功能,在完成下载过程中使用多线程技术可以较大幅度地提高下载的速度。
关键词:多线程;线程安全;断点续传
The Practice of Java Multithreading and Thread Security---- Download Tool with Broken/Resume Function based on http
Abstract
In real world, many processes have the characteristic that multi-strip clue act at the same time. The Java language has a major characteristic of embedded multithread support. Multithreading is the status that exist several implementation body at the same time, according to several different clues to the implementation of the joint work, It means that programmers can easily produce more threads development functions, It can also deal with a number of tasks powerful application. Running some of the threads need to share data, So each thread must consider other with it to share the data with the state of the thread, This is the thread safety. To Java multithreading and security mechanisms to conduct research and practice, Design hereby Http agreement on the support multithreading download procedures. This download procedures comprises of downloading task module, setting module and helping system module. With Http support of HttpClient, a subproject of Apache Jakarta Commons, it can download resources coming from web server. The procedure provides the Multi-threaded broken/resume functionality, in the process of completes downloading to use the multi-thread technology can greatly boost download speed.
Keywords: Multithreading; Thread security; Broken/Resume
目 录
论文总页数:25页
1 引言 1
1.1 课题的研究背景与意义 1
1.1.1 课题的研究背景 1
1.1.2 课题的研究意义 1
1.2 可行性分析 2
1.2.1 技术可行性 2
1.2.2 操作可行性 2
2相关基础知识以及开发平台 2
2.1 JAVA中的多线程与线程安全 3
2.1.1 Java中的多线程 3
2.1.2 Java中的线程安全 3
2.2 Http协议简介 4
2.3 断点续传原理 4
3 需求分析 5
3.1用户需求分析 5
3.2 业务流分析 6
4. 系统设计 7
4.1 系统设计要点 7
4.2 系统总体功能结构 7
5.系统实现 8
5.1用户界面实现 8
5.2 下载任务实现 11
5.2.1 下载任务类图 11
5.2.2 下载任务顺序图 12
5.2.3 下载任务具体实现 13
5.3 监控下载信息设计 18
5.3.1 监控下载信息类图 18
5.3.2 监控下载信息顺序图 19
5.3.3 监控下载信息实现 19
结 论 22
参考文献 23
致 谢 24
声 明 25