{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

JSP基础教程(第2版)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

JSP基础教程(第2版)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

《JSP基础教程(第2版)》是《JSP基础教程》的第2版,增加了一些新的内容,详细讲解了JSP语法和基本的程序设计方法。全书共分9章,包括JSP概述、JSP页面与JSP标记、Tag文件与Tag标记、JSP内置对象、JSP文件操作、JSP中使用数据库、JSP与JavaBean、Java Servlet基础,以及MVC模式等重要内容。《JSP基础教程(第2版)》所有知识都结合具体实例进行介绍,力求详略得当,突出JSP在开发W曲动态网站方面的强大功能及在开发商务网站方面的应用,使读者快速掌握和运用JSP的编程技巧。
JSP(Java Server Pages)是一种动态网页技术标准,它可以无缝地运行在UNIX、Linux和Windows操作平台上。利用这一技术可以建立安全、跨平台的先进动态网站。
《JSP基础教程(第2版)》不仅可以作为各大中专院校的JSP培训教材,也适合自学者及网站开发人员参考使用。
Catalogue

第1章 JSP概述
1.1 什么是JSP
1.2 安装配置JSP运行环境
1.3 JSP页面与服务目录
1.3.1 JSP页面
1.3.2 Web服务目录
1.4 JSP运行原理
习题一

第2章 JSP页面与JSP标记
2.1 JSP页面的基本结构
2.2 变量和方法的声明
2.2.1 声明变量
2.2.2 声明方法
2.3 Java程序片
2.4 表达式
2.5 JSP中的注释
2.6 JSP指令标记
2.6.1 page指令
2.6.2 include指令标记
2.7 JSP动作标记
2.7.1 Include动作标记
2.7.2 param动作标记
2.7.3 forward动作标记
2.7.4 plugin动作标记
2.7.5 useBean动作标记
习题二

第3章 Tag文件与lag标记
3.1 Tag文件的结构
3.2 Tag文件的保存
3.3 Tag标记与Tag文件的使用
3.4 Tag文件中的常用指令
3.5 Tag标记的嵌套
习题三

第4章 JSP内置对象
4.1 request对象
4.1.1 获取用户提交的信息
4.1.2 处理汉字信息
4.1.3 常用方法举例
4.1.4 使用Tag文件处理有关数据
4.1.5 处理HTML标记
4.2 response对象
4.2.1 动态响应contentType属性
4.2.2 response的HTTP文件头
4.2.3 response重定向
4.2.4 response的状态行
4.3 session对象
4.3.1 session对象的Id
4.3.2 session对象与URL重写
4.3.3 session对象存储数据
4.3.4 在Tag文件中使用session对象
4.3.5 session对象的生存期限
4.3.6 计数器
4.4 Out对象
4.5 application对象
4.5.1 application对象的常用方法
4.5.2 用application制作留言板
习题四

第5章 JSP中的文件操作
5.1 File类
5.1.1 获取文件的属性
5.1.2 创建目录
5.1.3 删除文件和目录
5.2 使用字节流读写文件
5.2.1 FilelnputStream和FileOutputStream类
5.2.2 BufferedInputStream和BufferedOutputStream类
5.3 使用字符流读写文件
5.3.1 File Reader和File Writer类
5.3.2 :Buffered Reader和Buffered Writer类
5.4 数据流
5.5 对象流
5.6 Random Access File类
5.7 文件上传
5.8 文件下载
习题五

第6章 JSP中使用数据库
6.1 SOLServer2000数据库管理系统
6.2 JDBC
6.3 连接数据库的常用方式
6.3.1 JDBC-ODBC桥接器
6.3.2 使用纯Java数据库驱动程序
6.4 查询记录
6.4.1 顺序查询
6.4.2 随机查询
6.4.3 条件查询
6.4.4 排序查询
6.4.5 模糊查询
6.5 更新记录
6.6 添加记录
6.7 删除记录
6.8 常见数据库连接
6.8.1 连接Oracle数据库
6.8.2 连接Access数据库
6.9 查询Excel电子表格
6.1 0网上投票
习题六

第7章 JSP与Java Bean
7.1 编写Java Bean和使用Java Bean
7.1.1 bean的编写与保存
7.1.2 使用bean
7.2 获取和修改bean的属性
7.2.1 get Property动作标记
7.2.2 set Property动作标记
7.3 bean的辅助类
7.4 使用bean的简单例子
7.4.1 三角形bean
7.4.2 猜数字bean
7.4.3 日历bean
7.4.4 四则运算bean
7.4.5 浏览图片bean
7.5.JavaBean与文件操作
7.5.1 读文件bean
7.5.2 写文件bean
7.5.3 上传文件bean
7.6.1 Java Bean与数据库操作
7.6.1 查询记录bean
7.6.2 分页显示记录bean
7.7 标准化考试bean
习题七

第8章 Java Servlet基础
8.1 Servlet类与servlet对象
Servelt类及字节码的保存
8.2 编写web.xml
8.3 servlet对象的创建与运行
8.4 servlet对象的工作原理
8.4.1 servlet对象的生命周期
8.4.2 init方法
8.4.3 service方法
8.4..4 destroy方法
8.5 通过ISP页面调用servlet
8.5.1 通过表单向servlet提交数据
8.5.2 通过超链接访问servlet
8.6 共享变量
8.7 do Get和do Post方法
8.8 重定向与转发
8.8.1 send Redirect方法
8.8.2 Request Dispatcher对象
8.9 使用session
获取用户的会话
习题八

第9章 MVC模式
9.1 MVC模式介绍
9.2 JSP中的MVC模式
9.3 模型的生命周期与视图更新
9.3.1 request周期的Java Bean
9.3.2 session周期的Java Bean
9.3.3 application周期的Java Bean
9.4 MVC模式的简单实例
9.4.1 计算三角形和梯形的面积
9.4.2 简单的计算器
9.5 MVC模式与文件操作
9.6 MVC模式与数据库操作
9.7.MVC模式与注册登录
9.7.1 注册
9.7.2 登录
9.7.3 验证
习题九
Book Abstract

第1章JSP概述
1.1 什么是JSP
网络通信中最常见的模式是B/S模式,即需要获取信息的用户使用浏览器向某个服务器发出请求,服务器进行必要的处理后,将有关信息发送给服务器。在B/S模式中,服务器上必须有所谓的Web应用程序,这样的应用程序负责处理用户的请求,满足用户对信息的请求。
JSP是W曲服务器端开发技术,利用这一技术可以建立安全、跨平台的W曲应用程序。JSP的安全性和跨平台得益于Java语言,这是因为Java语言具有不依赖于平台、面向对象和安全等优良特性,已经成为网络程序设计的佼佼者。许多和Java有关的技术得到了广泛的应用和认可,JSP技术就是其中之一。读者可能对Microsoft的ASP(Active Server Pages)比较熟悉,ASP也是一项Web服务器端的开发技术,可以开发出动态的、高性能的Web服务应用程序。JSP和ASP技术非常相似。ASP使用的是VBScript脚本语言,而JSP使用的是Java编程语言。与ASP相比,JSP以Java技术为基础,又在许多方面做了改进,具有动态页面与静态页面分离、能够脱离硬件平台的束缚及编译后运行等优点,完全克服了ASP的脚本级执行的缺点。JSP已经成为开发动态网站的主流技术。
需要强调的一点是:要想真正地掌握JSP技术,必须有较好的Java语言基础,以及HTML语言方面的知识。

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book