{{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

Java 学习笔记(第8版)

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

Java 学习笔记(第8版)

{{__(":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
Editer Recommend

●《JAVA 学习笔记(第8版)》是作者多年来教学实践经验的总结,汇集了学员在学习课程或认证考试中遇到的概念、操作、应用等问题及解决方案
●针对JavaSE8新功能全面改版,无论是章节架构或范例程序代码,都做了重新编写与全面翻新
●详细介绍了JVM、JRE、JavaSEAPI、JDK与IDE之间的对照关系
●从JavaSEAPI的源代码分析,了解各种语法在JavaSEAPI中的具体应用
●提供练习的Lab操作文档,方便读者掌握练习重点
●将IDE操作纳入教学内容使读者能与实践结合,提供视频教学能更清楚地帮助读者掌握操作步骤
超值赠送:
各章NetBeans范例项目
Lab的NetBeans项目
教学操作视频

Content Description

《JAVA 学习笔记(第8版)》是作者多年来教学实践经验的总结,汇集了学生在学习Java或认证考试时遇到的概念、操作、应用等问题及解决方案。
《JAVA 学习笔记(第8版)》针对Java SE 8新功能全面改版,无论是章节架构或范例程序代码,都做了重新编写与全面翻新,并详细介绍了JVM、JRE、Java SE API、JDK与IDE之间的对照关系。必要时可从Java SE API的源代码分析,了解各种语法在Java SE API中如何应用。对于建议练习的范例提供了Lab文档,以突出练习重点。此外,本书还将IDE操作纳为教学内容之一,让读者能与实践相结合,提供的教学视频可以让读者更清楚地掌握操作步骤。
《JAVA 学习笔记(第8版)》适合Java的初、中级读者以及广大Java应用开发人员。

Author Description

林信良(网名:良葛格),
学历:台湾大学电机工程学系
经历:台湾升阳教育训练技术顾问、专业讲师,Oracle授权训练中心讲师
著作:《JavaJDK5.0学习笔记》《JavaSE6技术手册》《JavaJDK6.0学习笔记》《JSP&Servlet学习笔记》《Spring技术手册》《JavaJDK7学习笔记》等
译作:《Ajax实战手册》《jQuery实战手册(第2版)》

Catalogue

Chapter 1 Java平台概论 1
1.1Java不只是语言 2
1.1.1前世今生 2
1.1.2三大平台 5
1.1.3JCP与JSR 6
1.1.4Oracle JDK与OpenJDK 7
1.1.5建议的学习路径 9
1.2JVM/JRE/JDK 12
1.2.1什么是JVM 13
1.2.2区分JRE与JDK 15
1.2.3下载、安装JDK 16
1.2.4认识JDK安装内容 19
1.3重点复习 20
1.4课后练习 21
Chapter 2 从JDK到IDE 22
2.1从Hello World开始 23
2.1.1撰写Java原始码 23
2.1.2PATH是什么 25
2.1.3JVM(java)与
CLASSPATH 28
2.1.4编译程序(javac)与
CLASSPATH 31
2.2管理原始码与位码文档 33
2.2.1编译程序(javac)与SOURCEPATH 33
2.2.2使用package管理类 35
2.2.3使用import偷懒 37
2.3使用IDE 39
2.3.1IDE项目管理基础 40
2.3.2使用了哪个JRE 44
2.3.3类文档版本 45
2.4重点复习 48
2.5课后练习 49
Chapter 3 基础语法 53
3.1类型、变量与运算符 54
3.1.1类型 54
3.1.2变量 57
3.1.3运算符 60
3.1.4类型转换 66
3.2流程控制 69
3.2.1if...else条件式 69
3.2.2switch条件式 72
3.2.3for循环 74
3.2.4while循环 75
3.2.5break、continue 77
3.3重点复习 78
3.4课后练习 79
3.4.1选择题 79
3.4.2操作题 81
Chapter 4 认识对象 82
4.1类与对象 83
4.1.1定义类 83
4.1.2使用标准类 86
4.1.3对象指定与相等性 89
4.2基本类型打包器 90
4.2.1打包基本类型 90
4.2.2自动装箱、拆箱 91
4.2.3自动装箱、拆箱的内幕 92
4.3数组对象 95
4.3.1数组基础 95
4.3.2操作数组对象 98
4.3.3数组复制 104
4.4字符串对象 107
4.4.1字符串基础 107
4.4.2字符串特性 110
4.4.3字符串编码 113
4.5查询Java API文件 115
4.6重点复习 118
4.7课后练习 119
4.7.1选择题 119
4.7.2操作题 121
Chapter 5 对象封装 122
5.1何谓封装 123
5.1.1封装对象初始流程 123
5.1.2封装对象操作流程 125
5.1.3封装对象内部数据 128
5.2类语法细节 131
5.2.1public权限修饰 131
5.2.2关于构造函数 133
5.2.3构造函数与方法重载 134
5.2.4使用this 136
5.2.5static类成员 139
5.2.6不定长度自变量 145
5.2.7内部类 146
5.2.8传值调用 148
5.3重点复习 151
5.4课后练习 152
5.4.1选择题 152
5.4.2操作题 155
Chapter 6 继承与多态 157
6.1何谓继承 158
6.1.1继承共同行为 158
6.1.2多态与is-a 162
6.1.3重新定义行为 166
6.1.4抽象方法、抽象类 169
6.2继承语法细节 170
6.2.1protected成员 170
6.2.2重新定义的细节 172
6.2.3再看构造函数 174
6.2.4再看final关键字 176
6.2.5java.lang.Object 178
6.2.6关于垃圾收集 182
6.2.7再看抽象类 185
6.3重点复习 188
6.4课后练习 189
6.4.1选择题 189
6.4.2操作题 193
Chapter 7 接口与多态 194
7.1何谓接口 195
7.1.1接口定义行为 195
7.1.2行为的多态 199
7.1.3解决需求变化 202
7.2接口语法细节 208
7.2.1接口的默认 208
7.2.2匿名内部类 212
7.2.3使用enum枚举常数 217
7.3重点复习 219
7.4课后练习 220
7.4.1选择题 220
7.4.2操作题 224
Chapter 8 异常处理 226
8.1语法与继承架构 227
8.1.1使用try、catch 227
8.1.2异常继承架构 230
8.1.3要抓还是要抛 235
8.1.4贴心还是造成麻烦 238
8.1.5认识堆栈追踪 240
8.1.6关于assert 244
8.2异常与资源管理 247
8.2.1使用finally 247
8.2.2自动尝试关闭资源 249
8.2.3java.lang.AutoCloseable接口 251
8.3重点复习 256
8.4课后练习 257
8.4.1选择题 257
8.4.2操作题 261
Chapter 9 Collection与Map 262
9.1使用Collection收集对象 263
9.1.1认识Collection架构 263
9.1.2具有索引的List 264
9.1.3内容不重复的Set 268
9.1.4支持队列操作的Queue 272
9.1.5使用泛型 275
9.1.6简介Lambda表达式 279
9.1.7Interable与Iterator 281
9.1.8Comparable与Comparator 284
9.2键值对应的Map 290
9.2.1常用Map操作类 291
9.2.2访问Map键值 295
9.3重点复习 298
9.4课后练习 299
9.4.1选择题 299
9.4.2操作题 303
Chapter 10 输入/输出 304
11.4.1选择题 380
11.4.2操作题 381
Chapter 12 Lambda 382
12.1认识Lambda语法 383
12.1.1Lambda语法概览 383
12.1.2Lambda表达式与函数接口 386
12.1.3Lambda遇上this与final 388
12.1.4方法与构造函数参考 391
12.1.5接口默认方法 394
12.2Functional与Stream API 399
12.2.1使用Optional取代null 399
12.2.2标准API的函数接口 401
12.2.3使用Stream进行管道操作 404
12.2.4进行Stream的reduce与collect 408
12.2.5关于flatMap()方法 413
12.3Lambda与并行处理 416
12.3.1Stream与平行化 416
12.3.2使用Completable-Future 420
12.4重点复习 423
12.5 课后练习 424

Book Abstract

1.1Java不只是语言
从1995年至今,Java已经过20个年头,经过这些年的演进,正如本节标题所示,Java已不仅是个程序语言,也代表了解决问题的平台(Platform),更代表了原厂、各个厂商、社群、开发者与用户沟通的成果。若仅以程序语言的角度来看待Java,正如冰山一角,你仅看到Java身为程序语言的一部分,而没看到Java身为程序语言之外,更可贵也更为庞大的资源。
1.1.1前世今生
一个语言的诞生有其目的,因为这个目的而成就了语言的主要特性。探索Java的历史演进,对于掌握Java特性与各式可用资源,着实有其帮助。
1. Java诞生
Java最早是Sun公司绿色项目Green Project中撰写Star7应用程序的程序语言,当时名称不是Java,而是取名为Oak。
绿色项目始于1990年12月,由Patrick Naughton、Mike Sheridan与James Gosling(James Gosling被尊称为Java之父)主持,目的是希望构筑出下一波计算机应用趋势并加以掌握,他们认为下一波计算机应用趋势会集中在消费性数字产品(就像现在的PDA、手机等消费性电子商品)的使用上。1992年9月3日,Green Team项目小组展示了Star7手持设备,这个设备具备无线网络连接、5inLCD彩色屏幕、PCMCIA接口等功能,而Oak在绿色项目中的目的,是用来撰写Star7上应用程序的程序语言。
Oak名称的由来,是因为James Gosling的办公室窗外有一棵橡树(Oak),就顺手取了这个名称。但后来发现Oak名称已经被注册了,工程师们边喝咖啡边讨论着新名称,最后灵机一动而改名为Java。
Java本身会见到许多为了节省资源而作的设计,像是动态加载类别文档、字符串池(String Pool)等特性,这是因为Java一开始就是为了消费性数字产品而设计,而这类小型装置通常有着有限内存与运算资源。
全球信息网(World Wide Web)兴起,Java Applet成为网页互动技术的代表。
1993年第一个全球信息网浏览器Mosaic诞生,James Gosling认为因特网与Java的一些特性不谋而合,利用Java Applet在浏览器上展现互动性媒体,在当时而言,对视觉感官是一种革命性的颠覆。Green Team仿照Mosaic开发出以Java技术为基础的浏览器WebRunner(原名为BladeRunner),后来改名为HotJava,虽然HotJava只是一个展示性产品,但它使用Java Applet展现的多媒体效果立即吸引了许多人的注意,如图1.1所示。
1995年5月23日(这一天被公认为Java的诞生日),正式将Oak改名为Java,Java Development Kits(当时JDK全名)1.0a2版本正式对外发表,而在1996年Netscape Navigator 2.0也正式支持Java,Microsoft Internet Explorer也开始支持Java,从此Java在因特网的世界中逐渐风行起来。虽然Star7产品并不被当时消费性市场接受,绿色项目面临被裁撤的命运,然而全球信息网的兴起却给了Java新的生命与舞台。
图1.1JDK所附的Java Applet范例(JDK文件夹\demo\applets\MoleculeViewer\example1.html)
2. 版本演进
随着Java越来越受到瞩目,Sun在1998年12月4日发布Java 2 Platform,简称J2SE 1.2,Java开发者版本一开始是以Java Development Kit名称发表,简称JDK,而J2SE则是平台名称,包含了JDK与Java程序语言。
Java平台标准版约以两年为周期推出重大版本更新,1998年12月4日发表J2SE 1.2,2000年5月8日发表J2SE 1.3,2002年2月13日发表J2SE 1.4, Java 2这个名称也从J2SE 1.2一直沿用至之后各个版本。
2004年9月29日发表的Java平台标准版的版号不是1.5,而直接跳到5.0,称为J2SE 5.0,这是为了彰显这个版本与之前版本有极大不同,如语法上的简化、增加泛型(Generics)、枚举(Enum)、注释(Annotation)等重大功能。
2006年12月11日发表的Java平台标准版,除了版本号之外,名称也有了变化,称为Java Platform, Standard Edition 6,简称Java SE 6,JDK6全名则称为Java SE Development Kit 6,也就是不再像以前Java 2带有2这个号码,版本号6或1.6.0都使用,6是产品版本(Product Version),而1.6.0是开发者版本(Developer Version)。
大部分的Java标准版平台都会取个代码名称(Code Name),例如J2SE 5.0的代码名称为Tiger(老虎),为了引人注目,在发表会上还真的抱了一只小白老虎出来作为噱头,而许多书的封面也相应地放上老虎的图片。有关JDK代码名称与发布日期,可以参考表1.1所示。
……

Introduction

你拿起了这本书,翻开这篇序,我有了机会问你一个问题:“为什么想翻开这本书?”
“当然是想学Java啊!笨蛋(作者)!”
翻开一本书,无非是想从书中得到知识,只是为何你要得到书中的知识,才是我想知道的答案,而这个答案决定了你在取得知识的过程中是否快乐!
多数人在取得知识的过程中并不快乐,因而只能幻想着取得知识之后,就能拥有快乐,我们的社会也不断塑造着这样的幻想……学会××之后就可以“找到工作”“年薪百万”“进外企”……不少人在完成买书或报名课程的那一瞬间,就彷佛看到童话故事结尾幸福又快乐的日子,甚至取得知识时花费越高,就越成为一种支持这自我满足的依据。
取得知识的过程中快乐很重要,可惜的是,多数教育并不将取得知识过程中是否快乐这件事摆在优先,甚至强调为了能拥有幸福又快乐的结局,你必须忍耐学习过程中种种不快乐的事情,有的人可能从没了解到取得知识的过程中也能够快乐这件事,也许你也早就忘了……
“不就是学个Java,跟快乐有什么关系!”
如果你学的过程中不快乐,很快地,你就会对学习的对象感到厌烦,无法体验到逐步成长的喜悦,享受不到解决问题的成就感,失去探索更高级知识的动力,就算勉为其难地完成了学习过程,开始用着似懂非懂、半生不熟的知识闯荡江湖,紧接而来的是害怕着你当初不懂现在也不想搞懂的知识,也畏惧着别人带进来的新知识,只要有你参与的东西,多半掺杂了一团浆糊,造成了伙伴的困扰也伤害了自己,幸福与快乐的日子永远不会到来,你在学习的过程也没有过快乐,真的是亏大了!
只是想着学习的过程中是否快乐,结局难道不重要吗?网络上对程序设计这块有句名言“程序是照你写的跑,不是照你想的跑”,事实上确实是如此,不过“就人生来说的话,不会照你想的跑,也不会照你规划的进行”,万一结局不是我所想象的,至少学习过程我乐在其中,以后有没有用那就再说了!
“就人生来说的话,不会照你想的跑,也不会照你规划的进行。”简而言之就是世事难料,现在当红的技术难保日后不会没落,想当预言家,幻想能够选对一项知识,在苦痛学习过程之后得到美满结局,这是很没有保障的,现在冷门的知识也有可能咸鱼翻身,到时是不是感觉赚很大是一回事,不过届时你也许只会想着“其实我当时只是觉得好玩”!
林信良
2015年1月
导 读
这份导读让你可以更了解如何使用本书。
新旧版差异
就目录上来说,你可以看出的差异是上一版为16个章节,新一版为18个章节,第12章Lambda无疑是新的章节,也是JDK8最重要的新增功能。第13章“时间与日期”,一开始先谈了对时间与日期应有的基本知识,然后将旧版中的Date与Calendar做了更详细介绍,因为有许多现存API仍在使用它们,紧接着该章介绍了JDK8新时间与日期API。
第14章“NIO与NIO2”一开始谈了NIO的基础,接着将旧版的NIO2也放进该章。第15章“通用API”为旧版本“通用API”,该章删除了Date与Calendar、NIO2,并将一些JDK8的新增功能放了进去。
当然,JDK8中还有不少新增的小功能,散落在各章节中适当的地方介绍,如果发现页侧有 图标,表示提及JDK8新功能,本书亦提供有JDK8新功能快速查询目录。
全书的程序代码都做了重新审视与修改,主要着重在增加可读性,每个方法片段尽量控制不超过15行,在9.1.6节简介过Lambda之后,在可能且有助于可读性的情况下,会使用Lambda相关语法或API来实作程序范例。
旧版中有个“窗口程序设计”章节,在新版中没有消失,只不过被移至附录B,这多半表示了Java在窗口程序这块的地位,当然,Java有JavaFX这项技术,能否扩展Java在窗口程序的市场仍有待观察。“窗口程序设计”章节移至附录,主要是保留给对窗口程序仍有兴趣的读者。
字型
本书正文中与程序代码相关的文字,都用固定字体来加以呈现,以与一般名词相区别。例如,JDK是一般名词,而String为程序代码相关文字,使用了固定字体以区分。
程序范例
你可以在以下网址下载本书的范例:
? http://www.tupwk.com.cn/downpage
? http://books.gotop.com.tw/download/Acl042200
本书许多的范例都使用完整程序操作来展现,当看到以下程序代码示范时:
ClassObject Guess.java
package cc.openhome;
import java.util.Scanner;
import static java.lang.System.out;
public class Guess {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int number = (int) (Math.random() * 10);
int guess;
do {
System.out.print("猜数字(0 ~ 9):");
guess = scanner.nextInt();
} while(guess != number);
out.println("猜中了...XD");
}
}
范例开始的左边名称为ClassObject,表示可以在范例文件的samples文件夹的各章节文件夹中找到对应的ClassObject项目;而右边名称为Guess.java,表示可以在项目中找到Guess.java文件。如果程序代码中出现标号与提示文字,表示后续的正文中,会有对应于标号及提示的更详细说明。
原则上,建议每个项目范例都亲手动作撰写,但如果由于教学时间或操作时间上的考虑,本书有建议进行的练习。如果在范例开始前有个 图标,例如:
Game1 SwordsMan.java
package cc.openhome;
public class SwordsMan extends Role {
public void fight() {
System.out.println("挥剑攻击");
}
}
表示建议范例动手操作,而且在范例文件的labs文件夹中会有练习项目的基础,可以打开项目后,完成项目中遗漏或必须补齐的程序代码或设定。
如果使用以下的程序代码呈现,表示它是一个完整的程序内容,但不是项目的一部分,主要用来展现一个完整文档如何撰写:
public class Hello {
public static void main(String[] args) {
System.out.println("Hello!World!");
}
}
如果使用以下的程序代码,则表示它是个代码段,主要展现程序撰写时需要特别注意的片段:
SwordsMan swordsMan = new SwordsMan();
...
System.out.printf("剑士 (%s, %d, %d)%n", swordsMan.getName(),
swordsMan.getLevel(), swordsMan.getBlood());
Magician magician = new Magician();
...
System.out.printf("魔法师 (%s, %d, %d)%n", magician.getName(),
magician.getLevel(), magician.getBlood());
操作步骤
本书将IDE进行设定的相关操作步骤也作为练习的一部分,你会看到如下的操作步骤说明:
(1) 选择“文件”|“新建项目”命令,在弹出的“新建项目”对话框的“类别”列表中选择Java,在“项目”列表中选择“Java应用程序”,接着单击“下一步”按钮。
(2) 在“项目名称”文本框中输入项目名称Hello2,在“项目位置”文本框中输入C:\workspace。注意,“项目文件夹”会储存至C:\workspace\Hello2。
(3) 在“创建主类”文本框中输入cc.openhome.Main,这表示会有个Main类放在cc.openhome包,当中会自动建立main()程序进入点的方法,接着单击“完成”按钮建立项目。
如果操作步骤旁有个 图标,表示范例文件的videos文件夹中对应的章节文件夹有操作步骤的视频,可观看它以更了解实际操作过程。
提示框
在本书中会出现以下提示框:
针对课程中所提到的观点,提供一些额外的资源或思考方向,暂时忽略这些提示对课程进行并没有影响,但有时间的话,针对这些提示做阅读、思考或讨论是有帮助的。
针对课程中所提到的观点,以提示框方式特别呈现出必须注意的一些使用方式、陷阱或避开问题的方法,看到这个提示框时请集中精神阅读。
附录
范例文件包括本书中所有范例,提供NetBeans范例项目,附录A说明如何使用这些范例项目,附录B则收录了上一版的“窗口程序设计”一章的内容。
联系作者
若有本书堪误反馈等相关书籍问题,可通过网站与作者联系。

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