-
Notifications
You must be signed in to change notification settings - Fork 0
/
volumes.json
747 lines (747 loc) · 34.6 KB
/
volumes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
{
"kind": "books#volumes",
"totalItems": 1995,
"items": [
{
"kind": "books#volume",
"id": "z7TQ8NSooS4C",
"etag": "y0da0U5Lsk4",
"selfLink": "https://www.googleapis.com/books/v1/volumes/z7TQ8NSooS4C",
"volumeInfo": {
"title": "Java NIO \\c Ron Hitchens",
"authors": [
"Ron Hitchens"
],
"publisher": "\"O'Reilly Media, Inc.\"",
"publishedDate": "2002-08-27",
"description": "The java New I/O (NIO) packages in J2SE 1.4 introduce many new, indispensable features previously unavailable to Java programmers. These include APIs for high-performance I/O operations, regular expression processing, and character set coding. These new libraries are a treasure trove for java developers. The NIO APIs are especially valuable where high-performance I/O is a requirement, but they can also be useful in a wide range of scenarios. The new APIs let you work directly with I/O buffers, multiplex nonblocking streams, do scattering reads and gathering writes, do channel-to-channel transfers, work with memory-mapped files, manage file locks, and much more. The new high-performance Regular Expression Library provides sophisticated, Perl-like regex-processing features such as pattern matching, search and replace, capture groups, look ahead assertions, and many others. The Charset API gives you complete control over character set encoding and decoding, which are vital for properly managing the exchange of documents on the Web, for localization, or for other purposes. You can also create and install your own custom character sets. Staying current with the latent java technology is never easy. NIO, new in Java 1.4, is quite possibly the most important new java feature since Swing. Understanding it thoroughly is essential for any serious Java developer. NIO closes the gap between java and natively compiled languages and enables java applications to achieve maximum I/O performance by effectively leveraging operating-system services in a portable way. Java NIO is a comprehensive guide to the java New I/O facilities. It lots you take full advantage of NIO features and shows you how they work, what they can do for you, and when you should use them. This book brings you up to speed on NIO and shows you how to bring your I/O-bound Java applications up to speed as well. Java NIO is an essential part of any Java professional's library.",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "0596002882"
},
{
"type": "ISBN_13",
"identifier": "9780596002886"
}
],
"readingModes": {
"text": false,
"image": true
},
"pageCount": 282,
"printType": "BOOK",
"categories": [
"Computers"
],
"averageRating": 3.0,
"ratingsCount": 1,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "2.4.2.0.preview.1",
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=z7TQ8NSooS4C&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=z7TQ8NSooS4C&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "en",
"previewLink": "http://books.google.com/books?id=z7TQ8NSooS4C&pg=PT239&dq=java&hl=&cd=1&source=gbs_api",
"infoLink": "http://books.google.com/books?id=z7TQ8NSooS4C&dq=java&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/Java_NIO_c_Ron_Hitchens.html?hl=&id=z7TQ8NSooS4C"
},
"saleInfo": {
"country": "GH",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "GH",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": true
},
"webReaderLink": "http://play.google.com/books/reader?id=z7TQ8NSooS4C&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "The custom Rot13 charset (continued) 222 | Chapter6: CharacterSets import \u003cb\u003ejava\u003c/b\u003e\u003cbr\u003e\n.nio.charset.CharsetDecoder; import \u003cb\u003ejava\u003c/b\u003e.nio.charset.CoderResult; import \u003cb\u003ejava\u003c/b\u003e.\u003cbr\u003e\nutil.Map; import \u003cb\u003ejava\u003c/b\u003e.util.Iterator; import \u003cb\u003ejava\u003c/b\u003e.io.Writer; import \u003cb\u003ejava\u003c/b\u003e.io.PrintStream ..."
}
},
{
"kind": "books#volume",
"id": "lfHo7uMk7r4C",
"etag": "VEUScSjvmLM",
"selfLink": "https://www.googleapis.com/books/v1/volumes/lfHo7uMk7r4C",
"volumeInfo": {
"title": "TCP/IP Sockets in Java",
"subtitle": "Practical Guide for Programmers",
"authors": [
"Kenneth L. Calvert",
"Michael J. Donahoo"
],
"publisher": "Morgan Kaufmann",
"publishedDate": "2011-08-29",
"description": "The networking capabilities of the Java platform have been extended considerably since the first edition of the book. This new edition covers version 1.5-1.7, the most current iterations, as well as making the following improvements: The API (application programming interface) reference sections in each chapter, which describe the relevant parts of each class, have been replaced with (i) a summary section that lists the classes and methods used in the code, and (ii) a \"gotchas\" section that mentions nonobvious or poorly-documented aspects of the objects. In addition, the book covers several new classes and capabilities introduced in the last few revisions of the Java platform. New abstractions to be covered include NetworkInterface, InterfaceAddress, Inet4/6Address, SocketAddress/InetSocketAddress, Executor, and others; extended access to low-level network information; support for IPv6; more complete access to socket options; and scalable I/O. The example code is also modified to take advantage of new language features such as annotations, enumerations, as well as generics and implicit iterators where appropriate. Most Internet applications use sockets to implement network communication protocols. This book's focused, tutorial-based approach helps the reader master the tasks and techniques essential to virtually all client-server projects using sockets in Java. Chapter 1 provides a general overview of networking concepts to allow readers to synchronize the concepts with terminology. Chapter 2 introduces the mechanics of simple clients and servers. Chapter 3 covers basic message construction and parsing. Chapter 4 then deals with techniques used to build more robust clients and servers. Chapter 5 (NEW) introduces the scalable interface facilities which were introduced in Java 1.5, including the buffer and channel abstractions. Chapter 6 discusses the relationship between the programming constructs and the underlying protocol implementations in more detail. Programming concepts are introduced through simple program examples accompanied by line-by-line code commentary that describes the purpose of every part of the program. No other resource presents so concisely or so effectively the material necessary to get up and running with Java sockets programming. Focused, tutorial-based instruction in key sockets programming techniques allows reader to quickly come up to speed on Java applications. Concise and up-to-date coverage of the most recent platform (1.7) for Java applications in networking technology.",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "0080568785"
},
{
"type": "ISBN_13",
"identifier": "9780080568782"
}
],
"readingModes": {
"text": true,
"image": true
},
"pageCount": 192,
"printType": "BOOK",
"categories": [
"Computers"
],
"averageRating": 4.0,
"ratingsCount": 2,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "1.4.5.0.preview.3",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=lfHo7uMk7r4C&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=lfHo7uMk7r4C&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "en",
"previewLink": "http://books.google.com/books?id=lfHo7uMk7r4C&pg=PA51&dq=java&hl=&cd=2&source=gbs_api",
"infoLink": "http://books.google.com/books?id=lfHo7uMk7r4C&dq=java&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/TCP_IP_Sockets_in_Java.html?hl=&id=lfHo7uMk7r4C"
},
"saleInfo": {
"country": "GH",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "GH",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": true,
"acsTokenLink": "http://books.google.com/books/download/TCP_IP_Sockets_in_Java-sample-epub.acsm?id=lfHo7uMk7r4C&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"pdf": {
"isAvailable": true,
"acsTokenLink": "http://books.google.com/books/download/TCP_IP_Sockets_in_Java-sample-pdf.acsm?id=lfHo7uMk7r4C&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"webReaderLink": "http://play.google.com/books/reader?id=lfHo7uMk7r4C&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "Framer.\u003cb\u003ejava\u003c/b\u003e 0 import \u003cb\u003ejava\u003c/b\u003e.io.IOException; 1 import \u003cb\u003ejava\u003c/b\u003e.io.OutputStream; 2 3 \u003cbr\u003e\npublic interface Framer { 4 void frameMsg(byte[] message, OutputStream out) \u003cbr\u003e\nthrows IOException; 5 byte[] nextMsg() throws IOException; 6 } Framer.\u003cb\u003ejava\u003c/b\u003e The \u003cbr\u003e\nclass ..."
}
},
{
"kind": "books#volume",
"id": "diqHjRjMhW0C",
"etag": "gN0woLnD5VA",
"selfLink": "https://www.googleapis.com/books/v1/volumes/diqHjRjMhW0C",
"volumeInfo": {
"title": "Wicked Cool Java",
"subtitle": "Code Bits, Open-source Libraries, and Project Ideas",
"authors": [
"Brian D. Eubanks"
],
"publisher": "No Starch Press",
"publishedDate": "2005",
"description": "Containing 101 fun, interesting, and useful ways to get more out of Java, this title targets developers and system architects who have some basic Java knowledge but may not be familiar with the wide range of libraries available.",
"industryIdentifiers": [
{
"type": "ISBN_13",
"identifier": "9781593270612"
},
{
"type": "ISBN_10",
"identifier": "1593270615"
}
],
"readingModes": {
"text": true,
"image": true
},
"pageCount": 224,
"printType": "BOOK",
"categories": [
"COMPUTERS"
],
"averageRating": 3.5,
"ratingsCount": 5,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "2.0.2.0.preview.3",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=diqHjRjMhW0C&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=diqHjRjMhW0C&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "en",
"previewLink": "http://books.google.com/books?id=diqHjRjMhW0C&pg=PA162&dq=java&hl=&cd=3&source=gbs_api",
"infoLink": "http://books.google.com/books?id=diqHjRjMhW0C&dq=java&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/Wicked_Cool_Java.html?hl=&id=diqHjRjMhW0C"
},
"saleInfo": {
"country": "GH",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "GH",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": true
},
"pdf": {
"isAvailable": true
},
"webReaderLink": "http://play.google.com/books/reader?id=diqHjRjMhW0C&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "with. Low-Level. \u003cb\u003eJava\u003c/b\u003e. Sound. For those of you who want to work with low-level \u003cbr\u003e\nsignal processing (and individual sound samples), the \u003cb\u003eJava\u003c/b\u003e Sound API provides \u003cbr\u003e\nthe ability to do this. You can read and write data streams to and from audio ports,\u003cbr\u003e\n ..."
}
},
{
"kind": "books#volume",
"id": "ka2VUBqHiWkC",
"etag": "K9S2ZpTVgaw",
"selfLink": "https://www.googleapis.com/books/v1/volumes/ka2VUBqHiWkC",
"volumeInfo": {
"title": "Effective Java",
"authors": [
"Joshua Bloch"
],
"publisher": "Addison-Wesley Professional",
"publishedDate": "2008-05-08",
"description": "Are you looking for a deeper understanding of the Java™ programming language so that you can write code that is clearer, more correct, more robust, and more reusable? Look no further! Effective Java™, Second Edition, brings together seventy-eight indispensable programmer’s rules of thumb: working, best-practice solutions for the programming challenges you encounter every day. This highly anticipated new edition of the classic, Jolt Award-winning work has been thoroughly updated to cover Java SE 5 and Java SE 6 features introduced since the first edition. Bloch explores new design patterns and language idioms, showing you how to make the most of features ranging from generics to enums, annotations to autoboxing. Each chapter in the book consists of several “items” presented in the form of a short, standalone essay that provides specific advice, insight into Java platform subtleties, and outstanding code examples. The comprehensive descriptions and explanations for each item illuminate what to do, what not to do, and why. Highlights include: New coverage of generics, enums, annotations, autoboxing, the for-each loop, varargs, concurrency utilities, and much more Updated techniques and best practices on classic topics, including objects, classes, libraries, methods, and serialization How to avoid the traps and pitfalls of commonly misunderstood subtleties of the language Focus on the language and its most fundamental libraries: java.lang, java.util, and, to a lesser extent, java.util.concurrent and java.io Simply put, Effective Java™, Second Edition, presents the most practical, authoritative guidelines available for writing efficient, well-designed programs.",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "0132778041"
},
{
"type": "ISBN_13",
"identifier": "9780132778046"
}
],
"readingModes": {
"text": true,
"image": true
},
"pageCount": 368,
"printType": "BOOK",
"categories": [
"Computers"
],
"averageRating": 4.5,
"ratingsCount": 35,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "0.3.5.0.preview.3",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=ka2VUBqHiWkC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=ka2VUBqHiWkC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "en",
"previewLink": "http://books.google.com/books?id=ka2VUBqHiWkC&pg=PA93&dq=java&hl=&cd=4&source=gbs_api",
"infoLink": "http://books.google.com/books?id=ka2VUBqHiWkC&dq=java&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/Effective_Java.html?hl=&id=ka2VUBqHiWkC"
},
"saleInfo": {
"country": "GH",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "GH",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED_FOR_ACCESSIBILITY",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": false
},
"webReaderLink": "http://play.google.com/books/reader?id=ka2VUBqHiWkC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "The \u003cb\u003eJava\u003c/b\u003e programming language provides two mechanisms for defining a type \u003cbr\u003e\nthat permits multiple implementations: interfaces and abstract classes. The most \u003cbr\u003e\nobvious difference between the two mechanisms is that abstract classes are ..."
}
},
{
"kind": "books#volume",
"id": "bIchilfV3bcC",
"etag": "MWIx6AQA8dE",
"selfLink": "https://www.googleapis.com/books/v1/volumes/bIchilfV3bcC",
"volumeInfo": {
"title": "Multithreaded Programming with Java Technology",
"authors": [
"Bil Lewis",
"Daniel J. Berg"
],
"publisher": "Prentice Hall Professional",
"publishedDate": "2000",
"description": "\"Multithreaded Programming with Java Technology is the first complete guide to multithreaded development with the Java 2 platform. Multithreading experts Bil Lewis and Daniel J. Berg cover the underlying structures upon which threads are built; thread construction; and thread lifecycles, including birth, life, death, and cancellation. Next, using extensive code examples, they cover everything developers need to know to make the most of multithreading.\"--BOOK JACKET.Title Summary field provided by Blackwell North America, Inc. All Rights Reserved",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "0130170070"
},
{
"type": "ISBN_13",
"identifier": "9780130170071"
}
],
"readingModes": {
"text": false,
"image": true
},
"pageCount": 461,
"printType": "BOOK",
"categories": [
"Computers"
],
"averageRating": 4.0,
"ratingsCount": 1,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": false,
"contentVersion": "0.0.1.0.preview.1",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=bIchilfV3bcC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=bIchilfV3bcC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "en",
"previewLink": "http://books.google.com/books?id=bIchilfV3bcC&pg=RA7-PA8&dq=java&hl=&cd=5&source=gbs_api",
"infoLink": "http://books.google.com/books?id=bIchilfV3bcC&dq=java&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/Multithreaded_Programming_with_Java_Tech.html?hl=&id=bIchilfV3bcC"
},
"saleInfo": {
"country": "GH",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "GH",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED_FOR_ACCESSIBILITY",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": false
},
"webReaderLink": "http://play.google.com/books/reader?id=bIchilfV3bcC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "You could write an "unlock_all" routine, but it would probably just make your code \u003cbr\u003e\neven more confusing and very likely lead you to make mistakes. In \u003cb\u003eJava\u003c/b\u003e, \u003cbr\u003e\nsynchronized sections are also recursive (Code Example 7-2). One synchronized\u003cbr\u003e\n ..."
}
},
{
"kind": "books#volume",
"id": "wqR2eOdZOqcC",
"etag": "aJdIm6X+D7s",
"selfLink": "https://www.googleapis.com/books/v1/volumes/wqR2eOdZOqcC",
"volumeInfo": {
"title": "Java I/O",
"authors": [
"Elliotte Rusty Harold"
],
"publisher": "\"O'Reilly Media, Inc.\"",
"publishedDate": "1999",
"description": "Intermediate programmers can refer to this guide to gain a solid understanding of text formatting in an object-oriented language. \"Java I/O\" explores streams, which provide simple ways to read and write data of different types, and shows how to control number formatting, use characters aside from the standard (but outdated) ASCII character set, and get a head start on writing truly multi-lingual software.",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "1565924851"
},
{
"type": "ISBN_13",
"identifier": "9781565924857"
}
],
"readingModes": {
"text": false,
"image": true
},
"pageCount": 568,
"printType": "BOOK",
"categories": [
"Computers"
],
"averageRating": 4.0,
"ratingsCount": 1,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": false,
"contentVersion": "2.1.1.0.preview.1",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=wqR2eOdZOqcC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=wqR2eOdZOqcC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "en",
"previewLink": "http://books.google.com/books?id=wqR2eOdZOqcC&pg=PA146&dq=java&hl=&cd=6&source=gbs_api",
"infoLink": "http://books.google.com/books?id=wqR2eOdZOqcC&dq=java&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/Java_I_O.html?hl=&id=wqR2eOdZOqcC"
},
"saleInfo": {
"country": "GH",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "GH",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": true
},
"webReaderLink": "http://play.google.com/books/reader?id=wqR2eOdZOqcC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "This is what the \u003cb\u003ejava\u003c/b\u003e. io. ByteArrayInputStream class gives you. Similarly, you \u003cbr\u003e\nmight want to send a group of double-precision, floating-point numbers across \u003cbr\u003e\nthe network with UDP. Before you can do this, you have to convert the numbers \u003cbr\u003e\ninto ..."
}
},
{
"kind": "books#volume",
"id": "uYKYS_kH_YcC",
"etag": "HsU00B1gNZI",
"selfLink": "https://www.googleapis.com/books/v1/volumes/uYKYS_kH_YcC",
"volumeInfo": {
"title": "Programming With Java:A Primer 3E",
"authors": [
"Balagurusamy"
],
"publisher": "Tata McGraw-Hill Education",
"publishedDate": "2006-12-01",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "0070617139"
},
{
"type": "ISBN_13",
"identifier": "9780070617131"
}
],
"readingModes": {
"text": false,
"image": true
},
"pageCount": 490,
"printType": "BOOK",
"categories": [
"Java (Computer program language)"
],
"averageRating": 4.0,
"ratingsCount": 47,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": false,
"contentVersion": "1.0.1.0.preview.1",
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=uYKYS_kH_YcC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=uYKYS_kH_YcC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "en",
"previewLink": "http://books.google.com/books?id=uYKYS_kH_YcC&pg=PR19&dq=java&hl=&cd=7&source=gbs_api",
"infoLink": "http://books.google.com/books?id=uYKYS_kH_YcC&dq=java&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/Programming_With_Java_A_Primer_3E.html?hl=&id=uYKYS_kH_YcC"
},
"saleInfo": {
"country": "GH",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "GH",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": false
},
"webReaderLink": "http://play.google.com/books/reader?id=uYKYS_kH_YcC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "Sun Microsystems has added many improvements and enhancements to \u003cb\u003eJava\u003c/b\u003e \u003cbr\u003e\nsince its release in 1995. \u003cb\u003eJava\u003c/b\u003e 2, released in 1999, incorporated a number of \u003cbr\u003e\nnew features to improve its performance. The latest release of \u003cb\u003eJava\u003c/b\u003e is J2SE 5.0 (\u003cbr\u003e\n\u003cb\u003eJava\u003c/b\u003e ..."
}
},
{
"kind": "books#volume",
"id": "2dQ8KL2t99QC",
"etag": "tsL8U/A4bJ4",
"selfLink": "https://www.googleapis.com/books/v1/volumes/2dQ8KL2t99QC",
"volumeInfo": {
"title": "Java Programs to Accompany Programming Logic and Design",
"authors": [
"Jo Ann Smith"
],
"publisher": "Cengage Learning",
"publishedDate": "2008-02-04",
"description": "Java PAL is designed to be paired with the Fifth Edition of the highly successful Programming Logic and Design by Joyce Farrell. The two books together provide the perfect opportunity for those who want to learn the fundamentals of programming and also get a taste of an actual programming language. Users can discover how real Java code behaves while remaining within the context of the traditional language-independent logic and design course. Important Notice: Media content referenced within the product description or the product text may not be available in the ebook version.",
"industryIdentifiers": [
{
"type": "ISBN_13",
"identifier": "9781423902294"
},
{
"type": "ISBN_10",
"identifier": "1423902297"
}
],
"readingModes": {
"text": false,
"image": true
},
"pageCount": 176,
"printType": "BOOK",
"categories": [
"Computers"
],
"maturityRating": "NOT_MATURE",
"allowAnonLogging": false,
"contentVersion": "preview-1.0.0",
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=2dQ8KL2t99QC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=2dQ8KL2t99QC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "en",
"previewLink": "http://books.google.com/books?id=2dQ8KL2t99QC&pg=PT132&dq=java&hl=&cd=8&source=gbs_api",
"infoLink": "http://books.google.com/books?id=2dQ8KL2t99QC&dq=java&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/Java_Programs_to_Accompany_Programming_L.html?hl=&id=2dQ8KL2t99QC"
},
"saleInfo": {
"country": "GH",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "GH",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": false
},
"webReaderLink": "http://play.google.com/books/reader?id=2dQ8KL2t99QC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "In this lab, you complete a partially written \u003cb\u003eJava\u003c/b\u003e program that includes a method \u003cbr\u003e\nrequiring multiple parameters (arguments). The program prompts the user for an \u003cbr\u003e\nitem price and the number of items ordered. If the item's price is less than $5.00, ..."
}
},
{
"kind": "books#volume",
"id": "is2J44U4DpsC",
"etag": "hTxQcBR4H+A",
"selfLink": "https://www.googleapis.com/books/v1/volumes/is2J44U4DpsC",
"volumeInfo": {
"title": "Cómo programar en Java",
"subtitle": "",
"authors": [
"Harvey M. Deitel",
"Paul J. Deitel"
],
"publisher": "Pearson Educación",
"publishedDate": "2003",
"description": "The Deitels' best-selling introductory Java book has been fully revised and updated to Java 2 Standard Edition (J2SE) 1.4. Like every How to Program book, \"Java How to Program, Fifth Edition\" features the Deitels' signature \"LIVE-CODE\" ™ approach to teaching programming languages with thousands of lines of live code, explained with exceptional clarity by the renowned programming trainers at Deitel and Associates. The Deitels cover all facets of the Java language, including object-orientation, multithreading, exception handling, the Java event programming model, GUI with Swing and AWT, graphics, and much more. You'll also find a set of core design patterns that are integrated throughout the text along with all new coverage of JDBC, SQL, n-tier, Web-application development with servlets and JSP, plus an introduction to XML processing with the Java XML library. The book also provides an optional, start-to-finish case study introducing Java object-oriented analysis and design with UML. It contains hundreds of tips, recommended practices and cautions (all marked with icons) for writing code that is portable, reusable and optimized for performance. For all beginning programmers -- and developers experienced with traditional languages -- who want to master Java quickly.",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "9702605180"
},
{
"type": "ISBN_13",
"identifier": "9789702605188"
}
],
"readingModes": {
"text": false,
"image": true
},
"pageCount": 1447,
"printType": "BOOK",
"categories": [
"Computers"
],
"averageRating": 4.5,
"ratingsCount": 4,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": false,
"contentVersion": "preview-1.0.0",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=is2J44U4DpsC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=is2J44U4DpsC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "en",
"previewLink": "http://books.google.com/books?id=is2J44U4DpsC&pg=PA571&dq=java&hl=&cd=9&source=gbs_api",
"infoLink": "http://books.google.com/books?id=is2J44U4DpsC&dq=java&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/C%C3%B3mo_programar_en_Java.html?hl=&id=is2J44U4DpsC"
},
"saleInfo": {
"country": "GH",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "GH",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": false
},
"webReaderLink": "http://play.google.com/books/reader?id=is2J44U4DpsC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "13.14: PruebaLista . \u003cb\u003ejava\u003c/b\u003e 2 // Selección de colores de un objeto JList. 3 import \u003cbr\u003e\n\u003cb\u003ejava\u003c/b\u003e.awt.*; 4 import javax. swing. *; 5 import javax. swing. event .* ; ó 7 public \u003cbr\u003e\nclass PruebaLista extends JFrame { 8 private JList listaColores; 9 private \u003cbr\u003e\nContainer ..."
}
},
{
"kind": "books#volume",
"id": "ABipZ5uKnvcC",
"etag": "/z64FQGTfSg",
"selfLink": "https://www.googleapis.com/books/v1/volumes/ABipZ5uKnvcC",
"volumeInfo": {
"title": "Cracking The C, C++ And Java Interview",
"authors": [
"S G Ganesh",
"Siemens",
"Bangalore"
],
"publisher": "Tata McGraw-Hill Education",
"publishedDate": "2009-01-01",
"description": "Salient Features:· Interview questions on C, C++ and Java programming· Categorized presentation of questions according to their level of difficulty· Sample written test question papers included· Information on various certification courses provided",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "0070077924"
},
{
"type": "ISBN_13",
"identifier": "9780070077928"
}
],
"readingModes": {
"text": false,
"image": true
},
"pageCount": 264,
"printType": "BOOK",
"categories": [
"C (Computer program language)"
],
"averageRating": 4.5,
"ratingsCount": 2,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": false,
"contentVersion": "1.0.1.0.preview.1",
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=ABipZ5uKnvcC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=ABipZ5uKnvcC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "en",
"previewLink": "http://books.google.com/books?id=ABipZ5uKnvcC&pg=PR8&dq=java&hl=&cd=10&source=gbs_api",
"infoLink": "http://books.google.com/books?id=ABipZ5uKnvcC&dq=java&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/Cracking_The_C_C++_And_Java_Interview.html?hl=&id=ABipZ5uKnvcC"
},
"saleInfo": {
"country": "GH",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "GH",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": false
},
"webReaderLink": "http://play.google.com/books/reader?id=ABipZ5uKnvcC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "For jobs that require programming skills, most of the IT companies (both products \u003cbr\u003e\nand services companies) look for candidates with good C, C++, \u003cb\u003eJava\u003c/b\u003e skills (also \u003cbr\u003e\nC# skills, but to a lesser extent) in addition to skills in writing and using various ..."
}
}
]
}