CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - WEB浏览器
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - WEB浏览器 - List
[
JSP
]
Java 实用系统开发指南JavaPractice
DL : 0
·VI· 目 录 前言 第1章 高性能聊天系统...................................................................................................1 1.1 系统需求...........................................................................................................1 1.2 架构设计...........................................................................................................2 1.2.1 Java事件模型.....................................................................................................2 1.2.2 架构设计图.......................................................................................................5 1.2.3 协议设计.........................................................................................................5 1.2.4 多线程...........................................................................................................6 1.2.5 线程池...........................................................................................................9 1.2.6 非堵塞I/O........................................................................................................11 1.3 Socket核心设计和实现...............................................................................................13 1.3.1 TCP和Reactor模式.................................................................................................14 1.3.2 UDP实现..........................................................................................................19 1.3.3 客户端实现.......................................................................................................22 1.4 Socket接口设计和实现..............................................................................................28 1.4.1 队列和对象类型..................................................................................................28 1.4.2 访问者模式定义..................................................................................................32 1.4.3 访问者模式实现..................................................................................................36 1.4.4 协议封装........................................................................................................39 1.4.5 重整Refactoring.................................................................................................41 1.5 应用接口设计和实现................................................................................................45 1.5.1 Connection API..................................................................................................46 1.5.2 ConnectionFactory API...........................................................................................49 1.5.3 TcpConnection API...............................................................................................53 1.5.4 UdpConnection API...............................................................................................54 1.6 应用层设计和实现..................................................................................................56 1.6.1 客户端聊天测试..................................................................................................56 1.6.2 服务器聊天测试..................................................................................................58 1.7 性能测试..........................................................................................................59 1.8 小结..............................................................................................................61 第2章 简单的用户注册系统..............................................................................................62 2.1 需求分析............................................................................................................62 2.2 系统设计............................................................................................................62 2.2.1 JSP/Servlet与J2EE.................................................................................................63 2.2.2 结构设计图........................................................................................................64 2.2.3 JSP/JavaBeans技术要点.............................................................................................65 2.2.4 JDBC和连接池......................................................................................................68 2.2.5 数据库设计........................................................................................................70 2.3 类的详细设计和实现..................................................................................................71 2.3.1 Facade模式........................................................................................................71 2.3.2 JDBC通用操作类....................................................................................................73 2.3.3 E-mail发送通用类..................................................................................................78 2.3.4 用户资料管理......................................................................................................79 2.3.5 密码数据操作类....................................................................................................83 2.3.6 登陆验证功能......................................................................................................85 2.4 界面编程实现........................................................................................................87 2.4.1 登陆验证页面......................................................................................................87 2.4.2 注册页面..........................................................................................................88 2.5 调试、发布和运行....................................................................................................90 2.5.1 单元测试..........................................................................................................91 2.5.2 快速配置开发环境..................................................................................................92 2.5.3 Tomcat配置和调试..................................................................................................93 2.5.4 Tomcat连接池使用..................................................................................................95 2.6 Hibernate使用.......................................................................................................99 2.7 小结................................................................................................................103 第3章 Jive论坛系统.....................................................................................................107 3.1 Jive功能需求.......................................................................................................107 3.2 Jive与设计模式.....................................................................................................108 3.2.1 设计模式.........................................................................................................109 3.2.2 ForumFactory与工厂模式...........................................................................................109 3.2.3 统一入口与单态模式...............................................................................................113 3.2.4 访问控制与代理模式...............................................................................................114 3.2.5 批量分页查询与迭代模式...........................................................................................115 3.2.6 过滤器与装饰模式.................................................................................................120 3.2.7 主题监测与观察者模式.............................................................................................124 3.3 Jive安全管理机制...................................................................................................128 3.3.1 安全验证机制.....................................................................................................129 3.3.2 用户资料管理.....................................................................................................132 3.4 Jive的缓存机制.....................................................................................................133 3.4.1 缓存原理和实现...................................................................................................133 3.4.2 缓存使用.........................................................................................................136 3.4.3 小结.............................................................................................................139 3.5 Jive的其他组件技术.................................................................................................140 3.5.1 Jive的树形结构...................................................................................................140 3.5.2 XML和JDOM........................................................................................................143 3.5.3 全文检索和Lucene.................................................................................................147 3.5.4 Jive的中文问题...................................................................................................152 3.6 Jive图形处理.......................................................................................................154 3.6.1 图片上传处理.....................................................................................................154 3.6.2 服务器端图形处理.................................................................................................157 3.7 Jive安装调试运行...................................................................................................159 3.8 小结...............................................................................................................160 第4章 网站内容管理系统.................................................................................................161 4.1 需求分析...........................................................................................................161 4.2 架构设计...........................................................................................................162 4.2.1 系统架构图.......................................................................................................163 4.2.2 MVC模式和Struts..................................................................................................164 4.2.3 DBO模式和Castor..................................................................................................167 4.2.4 Cache设计........................................................................................................172 4.3 详细设计和实现.....................................................................................................173 4.3.1 基本对象设计.....................................................................................................173 4.3.2 数据模型的实现...................................................................................................174 4.3.3 抽象工厂(Abstract Factory)模式...................................................................................175 4.3.4 生成器(Builder)模式..............................................................................................180 4.4 表现层的实现.......................................................................................................187 4.4.1 Strut相关设置....................................................................................................187 4.4.2 创建PageForm.....................................................................................................189 4.4.3 创建PageAction...................................................................................................192 4.4.4 创建page.jsp页面.................................................................................................194 4.4.5 自定义标签库.....................................................................................................196 4.4.6 创建SavePageAction...............................................................................................199 4.4.7 Tile模板.........................................................................................................201 4.4.8 创建cmsMenu.jsp..................................................................................................203 4.4.9 创建index.jsp....................................................................................................203 4.4.10 小技巧..........................................................................................................204 4.5 项目重整Refactoring................................................................................................205 4.6 调试、发布和运行...................................................................................................206 4.6.1 配置和运行.......................................................................................................206 4.6.2 Log调试信息的配置................................................................................................206 4.7 小结...............................................................................................................207 第5章 订阅信息系统.....................................................................................................209 5.1 需求分析...........................................................................................................209 5.2 架构设计...........................................................................................................209 5.2.1 Cache和Pool......................................................................................................210 5.2.2 EJB框架体系......................................................................................................211 5.2.3 架构图...........................................................................................................213 5.2.4 接口框架设计.....................................................................................................213 5.3 EJB详细设计和实现..................................................................................................214 5.3.1 业务对象建模.....................................................................................................215 5.3.2 开发环境配置.....................................................................................................216 5.3.3 CMP图形开发......................................................................................................217 5.3.4 实体Bean.........................................................................................................221 5.3.5 Facade Session Bean..............................................................................................229 5.3.6 Transfer Object模式..............................................................................................232 5.4 Web与EJB接口框架...................................................................................................233 5.4.1 框架的设计.......................................................................................................233 5.4.2 框架的实现.......................................................................................................235 5.4.3 框架的使用.......................................................................................................243 5.5 表现层的设计和实现.................................................................................................247 5.5.1 创建ActionForm...................................................................................................247 5.5.2 创建Action 类....................................................................................................248 5.5.3 创建JSP页面......................................................................................................248 5.6 调试配置和运行.....................................................................................................249 5.6.1 JBoss和MySQL的配置...............................................................................................250 5.6.2 JNDI配置.........................................................................................................251 5.6.3 部署和发布.......................................................................................................253 5.6.4 调试和测试.......................................................................................................254 5.7 小结...............................................................................................................254 第6章 用户安全管理系统.................................................................................................256 6.1 需求分析...........................................................................................................256 6.2 架构设计...........................................................................................................256 6.2.1 角色.............................................................................................................257 6.2.2 J2EE的JAAS.......................................................................................................257 6.2.3 单点登录.........................................................................................................259 6.2.4 邮件发送组件.....................................................................................................261 6.3 详细设计和实现.....................................................................................................261 6.3.1 业务对象建模.....................................................................................................261 6.3.2 数据库设计.......................................................................................................263 6.3.3 实体bean实现.....................................................................................................263 6.3.4 Session Bean实现.................................................................................................266 6.3.5 EJB容器安全配置..................................................................................................273 6.4 JMS 邮件发送组件...................................................................................................275 6.4.1 消息发送器.......................................................................................................276 6.4.2 MDB..............................................................................................................279 6.5 Web层的实现........................................................................................................282 6.5.1 用户资料管理.....................................................................................................282 6.5.2 Web容器安全配置..................................................................................................287 6.6 调试配置和运行.....................................................................................................289 6.6.1 JAAS配置.........................................................................................................290 6.6.2 邮件服务的配置...................................................................................................291 6.6.3 部署和发布.......................................................................................................292 6.7 小结...............................................................................................................292 第7章 EJB方法调用框架..................................................................................................294 7.1 框架概况...........................................................................................................294 7.1.1 远程调用技术背景.................................................................................................294 7.1.2 框架结构.........................................................................................................295 7.2 框架设计..........................................................................................................296 7.2.1 代理(Proxy)模式...............................................................................................296 7.2.2 动态代理........................................................................................................298 7.2.3 反射(Reflection)和方法调用....................................................................................300 7.2.4 HTTP协议和对象序列化............................................................................................302 7.2.5 框架设计图......................................................................................................304 7.2.6 HTTPSession和缓存机制...........................................................................................305 7.2.7 基于HTTP的安全机制..............................................................................................306 7.3 类的详细设计和实现................................................................................................309 7.3.1 基本业务对象....................................................................................................310 7.3.2 动态代理工厂....................................................................................................312 7.3.3 肥客户端/服务器架构下实现.......................................................................................315 7.3.4 Web层代理Servlet Proxy..........................................................................................322 7.3.5 浏览器/服务器架构下实现.........................................................................................324 7.3.6 核心代理Business Proxy实现......................................................................................327 7.4 框架的使用和调试..................................................................................................333 7.4.1 配置............................................................................................................333 7.4.2 浏览器/服务器架构下的应用.......................................................................................335 7.4.3 肥客户端/服务器架构下的应用.....................................................................................336 7.5 小结..............................................................................................................337 第8章 网上商店系统...................................................................................................338 8.1 系统需求和设计...................................................................................................338 8.1.1 基本业务对象...................................................................................................339 8.1.2 数据表设计.....................................................................................................340 8.2 数据操作通用框架.................................................................................................344 8.2.1 框架的提炼和设计...............................................................................................347 8.2.2 增、删、改、查框架实现.........................................................................................352 8.3 商品类别管理功能的实现...........................................................................................356 8.3.1 创建Session Bean................................................................................................357 8.3.2 EJB配置.........................................................................................................358 8.3.3 创建Category相关类实现..........................................................................................360 8.3.4 Web配置.........................................................................................................361 8.3.5 创建Category.jsp................................................................................................362 8.4 商品管理功能的实现................................................................................................364 8.4.1 创建ProductManager..............................................................................................364 8.4.2 EJB配置.........................................................................................................366 8.4.3 创建Product相关类实现...........................................................................................368 8.4.4 Web配置.........................................................................................................369 8.4.5 创建product.jsp.................................................................................................370 8.4.6 商品图片上传功能................................................................................................374 8.5 商品批量查询和多页显示............................................................................................376 8.5.1 DAO模式.........................................................................................................377 8.5.2 Strut框架下设计和实现...........................................................................................385 8.5.3 页导航条实现....................................................................................................388 8.6 购物车功能的实现..................................................................................................393 8.6.1 有状态Session Bean..............................................................................................393 8.6.2 Web功能实现.....................................................................................................396 8.7 小结..............................................................................................................399
Date
: 2009-04-08
Size
: 30.05mb
User
:
fengbozs@163.com
[
JSP
]
151
DL : 0
jsp学习 jsp编程白例源代码此部分是指文件夹名为第1~9章中的内容(如表1),这些是书中介绍JSP相关知识的源代码。文件的命名规则与书中相应源代码文件名一致。读者可将相关文件夹(如ch2)拷贝到Tomcat服务器安装目录的子目录webapps下,并启动Tomcat服务器,在浏览器中浏览网页。 -jsp learning jsp white cases programming source code is part of this folder entitled to a section of Chapter 9 (Table 1), which was introduced JSP book knowledge of the source code. The document naming rules book with the corresponding source code file name unanimously. Readers may be relevant folder (such as lacustrine) copied to Tomcat server installation subdirectory webapps directory, and start Tomcat server, in a browser to surf the Web.
Date
: 2026-01-07
Size
: 1.41mb
User
:
刘辉
[
JSP
]
senddynamicimage
DL : 0
像当一个web页面带有image/jpeg (或者其他的图像格式)的MIME类型被发送时,你的浏览器将那个返回结果当作一个图像,然后浏览器显示图像,作为页面的一部分或者完全作为图像自身。要为你的jsp页面设置MIME类型,你需要设置页面的contentType属性-example, when a web page with image/jpeg (or other image format) of MIM E types are sent, your browser will return to that as a result of images and then display the image browser. as part of the page or as a completely self-image. To your jsp pages set MIME types, you need to set the page attribute contentType
Date
: 2026-01-07
Size
: 2kb
User
:
李宁
[
JSP
]
ServletJsp
DL : 0
Servlet是使用Java Servlet 应用程序设计接口(API)及相关类和方法的 Java 程序。除了 Java Servlet API,Servlet 还可以使用用以扩展和添加到 API 的 Java 类软件包。Servlet 在启用 Java 的 Web 服务器上或应用服务器上运行并扩展了该服务器的能力。Java servlet对于Web服务器就好象Java applet对于Web浏览器。Servlet装入Web服务器并在Web服务器内执行,而applet装入Web浏览器并在Web浏览器内执行。Java Servlet API 定义了一个servlet 和Java使能的服务器之间的一个标准接口,这使得Servlets具有跨服务器平台的特性。 Servlet 通过创建一个框架来扩展服务器的能力,以提供在 Web 上进行请求和响应服务。当客户机发送请求至服务器时,服务器可以将请求信息发送给 Servlet,并让 Servlet 建立起服务器返回给客户机的响应。 当启动 Web 服务器或客户机第一次请求服务时,可以自动装入 Servlet。装入后, Servlet 继续运行直到其它客户机发出请求。Servlet 的功能涉及范围很广 -err
Date
: 2026-01-07
Size
: 437kb
User
:
zengji
[
JSP
]
JavaWeb
DL : 0
Java Web应用程序设计,非常实用的电子书,请用超星浏览器打开学习-Java Web application design, very practical book, please use the browser to open learning Chaoxing
Date
: 2026-01-07
Size
: 6.01mb
User
:
luj
[
JSP
]
javascript
DL : 0
本书首先概要介绍Netscape Navigator,即当前流行的Web浏览器版本,JavaScript及其与Java的关系,以及它在Web开发工具Netscape 中的地位,然后重点介绍JavaScript语言的各个方面以及如何将它们应用于Web的实际网景中。本书中提供了一些小的脚本,这些脚本可直接用于读者自己的Web页面。本书还讨论了Java,JavaScript,HTML,Navigator等目前流行的这些词汇的具体含义以及它们之间的关系。本书的附录部分给出了JavaScript语言参考。书中的绝大多数源代码都由HTML写成。本书由浅入深的,实例丰富,是一本学习JavaScript语言的速成指导,本书适用于广大Web设计者、编程者和网络爱好者。 -err
Date
: 2026-01-07
Size
: 22.74mb
User
:
Garfiled
[
JSP
]
ch03
DL : 0
web 浏览器中的AJAX,以及一些技术的介绍-web browser AJAX, as well as some technology introduction
Date
: 2026-01-07
Size
: 532kb
User
:
proudsky
[
JSP
]
Javascript
DL : 0
本书从早期的Netscape浏览器中的JavaScript讲起,直到当前它对xml和web的具体支持。将学会如何将JavaScript解决方案应用到web开发者面对的商业问题上。-This book from the early Netscape browser JavaScript talking about until the current xml and its specific support for web. Will learn how to apply JavaScript solution for web developers on business issues faced.
Date
: 2026-01-07
Size
: 5.95mb
User
:
风乘林
[
JSP
]
JSP_wljishu
DL : 0
JSP网络编程技术.后缀为PDG请用超星浏览器阅读 -JSP Web programming technology. Suffix for the PDG Please use the browser Superstar reading
Date
: 2026-01-07
Size
: 5.04mb
User
:
石平阳
[
JSP
]
WebBrowser
DL : 0
用JEditorPane做的java浏览器 效果不是很好-a java web browser using JEditorPane
Date
: 2026-01-07
Size
: 4kb
User
:
何翀彬
[
JSP
]
3schoolPsqlPcss
DL : 0
学习sql,php,html,等脚本语言的很好的材料,简单易懂 HTML教程 HTML XHTML CSS TCP/IP XML教程 XML DTD XML DOM XSL XSLT XSL-FO XPath XQuery XLink XPointer Schema XForms SOAP WSDL RDF RSS WAP Web Services 浏览器脚本 JavaScript HTML DOM DHTML VBScript AJAX jQuery E4X WMLScript 服务器脚本 SQL ASP ADO PHP .NET(dotnet) .NET Microsoft .NET ASP .NET Mobile 多媒体 Media SMIL SVG -Learning sql, php, html, good material and other scripting languages, easy-to-understand
Date
: 2026-01-07
Size
: 9.82mb
User
:
Jack
[
JSP
]
JavaScript-and-HTML-tutorial
DL : 0
JavaScript是由Netscape公司开发并包含于Netscape Navigator浏览器的内部脚本语言,它可以用于开发基本于Web的高级应用程序。本书首先概要介绍Netscape Navigator,即当前流行的Web浏览器版本,JavaScript及其与Java的关系,以及它在Web开发工具Netscape 中的地位,然后重点介绍JavaScript语言的各个方面以及如何将它们应用于Web的实际网景中。本书中提供了一些小的脚本,这些脚本可直接用于读者自己的Web页面。-JavaScript is developed by Netscape, and internal scripting language included in the Netscape Navigator browser, which can be used to develop basic Web application. The book begins with an overview of the Netscape Navigator, the current version of the popular Web browser, JavaScript with Java, as well as its position in the Web development tools Netscape, and then focuses on the various aspects of the JavaScript language and how to apply them to the actual Web Netscape. The book provides some small scripts that can be used directly in the reader' s own Web page.
Date
: 2026-01-07
Size
: 22.56mb
User
:
fyqruo
[
JSP
]
javascript_advanced_course
DL : 0
《JavaScript权威指南》全面介绍了JavaScript语言的核心,以及Web浏览器中实现的遗留和标准的DOM。它运用了一些复杂的例子,说明如何处理验证表单数据、使用cookie、创建可移植的DHTML动画等常见任务。本书还包括详细的参考手册,涵盖了JavaScript的核心API、遗留的客户端API和W3C标准DOM API,记述了这些API中的每一个JavaScript对象、方法、性质、构造函数、常量和事件处理程序-JavaScript The Definitive Guide, " a comprehensive introduction to the the legacy core JavaScript language, as well as a Web browser and standard DOM. It uses a complex example, how to deal with the verification form data, the use of cookies, the common task of creating portable DHTML animations. The book also includes a detailed reference manual covering the core JavaScript API, the legacy client API and the W3C standard DOM API describes each of these API is a JavaScript object, method, nature, structure, functions, constants, and events handler
Date
: 2026-01-07
Size
: 4.93mb
User
:
zhang
[
JSP
]
jQuery-Mobile
DL : 0
jQuery Mobile[1-2]是jQuery 在手机上和平板设备上的版本。jQuery Mobile 不仅会给主流移动平台带来jQuery核心库,而且会发布一个完整统一的jQuery移动UI框架。支持全球主流的移动平台。jQuery Mobile开发团队说:能开发这个项目,我们非常兴奋。移动Web太需要一个跨浏览器的框架,让开发人员开发出真正的移动Web网站。-JQuery Mobile[1-2] is the jQuery in the mobile phone and tablet versions. JQuery Mobile will not only give the mainstream mobile platform with jQuery core library, and will publish a complete and unified jQuery mobile UI framework. The mobile platform to support the global mainstream. JQuery Mobile development team said: can the development of this project, we are very excited. Mobile Web is a cross-browser framework, allow developers to develop mobile Web site really.
Date
: 2026-01-07
Size
: 785kb
User
:
刘伟
[
JSP
]
CLEditor
DL : 0
CLEditor是一个开源的jQuery插件提供了一个轻量级的、全功能、跨浏览器、可扩展、 WYSIWYG HTML编辑器,可以很容易地添加到任何网站。 -CLEditor is an open source jQuery plugin provides a lightweight, full-featured, cross-browser, extensible, WYSIWYG HTML editor, can be easily added to any Web site.
Date
: 2026-01-07
Size
: 46kb
User
:
李张龙
[
JSP
]
WebKit-For-Dummies
DL : 0
得到速度的引擎,谷歌Chrome浏览器Safari和权力的web浏览器在iPhone、iPad、Android,黑莓,Kindle,和诺基亚的共同点与谷歌Chrome和苹果Safari吗?权力都WebKit。本指南向您展示了如何创建网站和移动web应用程序使用WebKit。学习使用所有的开发者工具,最新的web标准和WebKit的独特风格和功能来创建有吸引力的交互式网站为移动和桌面显示。探讨了WebKit支持HTML5和CSS3,提供一个大型工具箱创建更快和更好的移动网站解释了如何创建web页面对于移动和桌面显示使用WebKit覆盖获取和安装开发工具,构建web页面、调试和部署它们,并利用WebKit函数来创建更快、更有吸引力、更互动的网站和移动设备快速增殖率,从未有一个更好的时间去学习所有的引擎,权力领先的移动浏览器。WebKit傻瓜教您创建web页面,使大多数WebKit提供的一切。-Get up to speed on the engine that powers Safari and Google Chrome What do the web browsers on iPhone, iPad, Android, Blackberry, Kindle, and Nokia have in common with Google Chrome and Apple Safari? WebKit powers them all. This guide shows you how to create web sites and mobile web apps using WebKit. Learn to use all the developer tools, the latest web standards, and WebKit s unique styles and functions to create appealing, interactive sites for mobile and desktop display. Explores how WebKit supports HTML5 and CSS3, providing a large toolkit for creating faster and better mobile web sites Explains how to create web pages for both mobile and desktop display using WebKit Covers acquiring and installing the developer tools, building web pages, debugging and deploying them, and taking advantage of WebKit functions to create faster, more appealing, and more interactive sites With mobile devices proliferating at a rapid rate, there s never been a better time to learn all about the engine t
Date
: 2026-01-07
Size
: 7mb
User
:
TD_Kennedy
[
JSP
]
JavaScript-The-Definitive-Guide
DL : 0
自1996以来,JavaScript:权威指南已经programmers-a JavaScript程序员指南、核心语言综合参考和API定义的Web浏览器的客户端JavaScript圣经。第六版包括HTML5和ECMAScript 5,在jQuery和服务器端JavaScript的新篇章。这是推荐有经验的程序员谁想学习网络编程语言,和当前的JavaScript程序员要掌握它。-Since 1996, JavaScript: The Definitive Guide has been the bible for JavaScript programmers—a programmer’s guide and comprehensive reference to the core language and to the client-side JavaScript APIs defined by web browsers. The 6th edition covers HTML5 and ECMAScript 5, with new chapters on jQuery and server side JavaScript. It’s recommended for experienced programmers who want to learn the programming language of the Web, and for current JavaScript programmers who want to master it.
Date
: 2026-01-07
Size
: 20.53mb
User
:
月冷风清
[
JSP
]
HttpClient-4.3
DL : 0
Http 协议应该是互联网中最重要的协议。持续增长的 web 服务、可联网的家用电器等都在继承并拓 展着 Http 协议,向着浏览器之外的方向发展。 虽然 jdk 中的 java.net 包中提供了一些基本的方法,通过 http 协议来访问网络资源,但是大多数场 景下,它都不够灵活和强大。HttpClient 致力于填补这个空白,它可以提供有效的、最新的、功能丰 富的包来实现 http 客户端。 为了拓展,HttpClient 即支持基本的 http 协议,还支持 http-aware 客户端程序,如 web 浏览器, Webservice 客户端,以及利用 or 拓展 http 协议的分布式系统。-The Http protocol should be the most important thing in the Internet.Sustained growth of web services, can be connected to the household appliances in the inheritance and extension Show the Http protocol, developing in the direction of the outside of the browser. Although the JDK the java.net package provides some basic method, through the HTTP protocol to access network resources, but most of the games Flexible and powerful scene, it is not enough.HttpClient is committed to fill the gap, it can provide effective and latest, function Rich package to realize HTTP client. In order to develop, the HttpClient supports basic HTTP protocol, also support HTTP- aware the client program, such as web browser, Web service client, and the use of the or expand the HTTP protocol of distributed systems.
Date
: 2026-01-07
Size
: 425kb
User
:
HelloWorldYun
[
JSP
]
httpclient-simplified-chinese
DL : 0
为扩展而设计,同时为基本的HTTP协议提供强大的支持,HttpClient组件也许就是构建HTTP客户端应用程序,比如web浏览器,web服务端,利用或扩展HTTP协议进行分布式通信的系统的开发人员的关注点。-Designed for expansion, and provide strong support for the basic HTTP protocol, the HttpClient component may be building HTTP client applications, such as web browser, web server, or the use of distributed communication system HTTP protocol extension of the attention of developers.
Date
: 2026-01-07
Size
: 796kb
User
:
吴聊
[
JSP
]
JavaScriptqwzndqb_downcc
DL : 0
《JavaScript权威指南(第7版)》主要讲述的内容涵盖JavaScript语言本身,以及Web浏览器所实现的JavaScript API。本书第6版涵盖了HTML5和ECMAScript 5,很多章节完全重写,增加了当今Web开发的最佳实践的内容,新增的章节包括JQuery、服务器端JavaScript、图形编程以及 JavaScript式的面向对象。本书不仅适合初学者系统学习,也适合有经验的 JavaScript 开发者随手翻阅。(JavaScript authority Guide (7th Edition) mainly covers the JavaScript language itself and the JavaScript API implemented by web browser. The sixth edition of this book covers HTML5 and ECMAScript 5. Many chapters are completely rewritten, adding the content of best practices in today's web development. The new chapters include jQuery, server-side JavaScript, graphic programming and JavaScript style object-oriented. This book is not only suitable for beginners to learn, but also for experienced JavaScript developers.)
Date
: 2026-01-07
Size
: 20.5mb
User
:
crackhack
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.