Kindleアプリのロゴ画像

無料のKindleアプリをダウンロードして、スマートフォン、タブレット、またはコンピューターで今すぐKindle本を読むことができます。Kindleデバイスは必要ありません

ウェブ版Kindleなら、お使いのブラウザですぐにお読みいただけます。

携帯電話のカメラを使用する - 以下のコードをスキャンし、Kindleアプリをダウンロードしてください。

KindleアプリをダウンロードするためのQRコード

著者をフォロー

何か問題が発生しました。後で再度リクエストしてください。

Java Cookbook: Solutions and Examples for Java Developers ペーパーバック – 2014/7/22

4.2 5つ星のうち4.2 40個の評価

From lambda expressions and JavaFX 8 to new support for network programming and mobile development, Java 8 brings a wealth of changes. This cookbook helps you get up to speed right away with hundreds of hands-on recipes across a broad range of Java topics. You’ll learn useful techniques for everything from debugging and data structures to GUI development and functional programming.

Each recipe includes self-contained code solutions that you can freely use, along with a discussion of how and why they work. If you are familiar with Java basics, this cookbook will bolster your knowledge of the language in general and Java 8’s main APIs in particular.

Recipes include:

  • Methods for compiling, running, and debugging
  • Manipulating, comparing, and rearranging text
  • Regular expressions for string- and pattern-matching
  • Handling numbers, dates, and times
  • Structuring data with collections, arrays, and other types
  • Object-oriented and functional programming techniques
  • Directory and filesystem operations
  • Working with graphics, audio, and video
  • GUI development, including JavaFX and handlers
  • Network programming on both client and server
  • Database access, using JPA, Hibernate, and JDBC
  • Processing JSON and XML for data storage
  • Multithreading and concurrency

この商品には新版があります:

Java Cookbook: Problems and Solutions for Java Developers
¥9,898
この本の出版予定日は2025年3月18日です。

商品の説明

著者について

Ian F. Darwin has worked in the computer industry for three decades. He wrote the freeware file(1) command used on Linux and BSD and is the author of Checking C Programs with Lint, Java Cookbook, and over seventy articles and courses on C and Unix. In addition to programming and consulting, Ian teaches Unix, C, and Java for Learning Tree International, one of the world's largest technical training companies.

登録情報

  • ASIN ‏ : ‎ 144933704X
  • 出版社 ‏ : ‎ O'Reilly Media; Third版 (2014/7/22)
  • 発売日 ‏ : ‎ 2014/7/22
  • 言語 ‏ : ‎ 英語
  • ペーパーバック ‏ : ‎ 898ページ
  • ISBN-10 ‏ : ‎ 9781449337049
  • ISBN-13 ‏ : ‎ 978-1449337049
  • 寸法 ‏ : ‎ 17.8 x 4.66 x 23 cm
  • カスタマーレビュー:
    4.2 5つ星のうち4.2 40個の評価

著者について

著者をフォローして、新作のアップデートや改善されたおすすめを入手してください。
イアン・F.ダーウィン
Brief content visible, double tap to read full content.
Full content visible, double tap to read brief content.

著者の本をもっと見つけたり、似たような著者を調べたり、おすすめの本を読んだりできます。

カスタマーレビュー

星5つ中4.2つ
40グローバルレーティング

この商品をレビュー

他のお客様にも意見を伝えましょう

上位レビュー、対象国: 日本

日本からの0件のレビューとお客様による0件の評価があります

他の国からのトップレビュー

すべてのレビューを日本語に翻訳
  • matthew
    5つ星のうち5.0 Great book to dive into when your not sure about ...
    2016年4月23日に英国でレビュー済み
    Amazonで購入
    Great book to dive into when your not sure about a specific job you need to do.

    I recommend this and a Java reference manual to learn Java.
  • Daithi Reynolds
    5つ星のうち5.0 Great stuff
    2015年3月4日にドイツでレビュー済み
    Amazonで購入
    It says its a "mangle exemplar", but I find it in great condition. Delivery was as expected, so I'm a happy customer
  • Jeff
    5つ星のうち5.0 Invaluable reference guide
    2004年1月14日にアメリカ合衆国でレビュー済み
    Amazonで購入
    Ok, You've been writing Java code for months, maybe even a couple of years. Objects aren't anything special... they're just the natural way to do things. You don't even need to LOOK at the Servlet API anymore. You might even have a SCJP or SCWCD under your belt.
    Then, for the first time in years, it happens: you need to interact with a real, honest-to-god file sitting on the hard drive. Or parse a String into a Date object. And this time, you can't just throw the job at Tomcat or JDBC and let it do the dirty work for you. And to your absolute horror, you realize that you don't have the slightest clue in hell how to do it in Java.
    That's right... simple, trivial things like file i/o. Something stupid, like reading a text file into a String. After cursing Gosling and Sun for a half hour for not giving String a constructor that takes a File object as its argument and making things that should be trivially easy to do needlessly complicated [ok, all in unison... 'if ((foo != null) && (foo.equals("whatever")))', vs. 'if (foo == "whatever")' ...], it sinks in: You don't know how to do it. Well, OK, that's not quite fair. You have a general idea. Hell, you did it all the time in Perl and C++. You know it probably has something to do with java.io.File, and following the deprecation chain from java.util.Date will lead you to java.util.Calendar. But the devil's in the details, and trying to figure out how to do it from the javadocs alone isn't exactly the most efficient way to burn an afternoon. Especially since all the nice, convenient methods that let you ignore ugly things like character encoding were deprecated LONG ago. Ditto for date parsing.
    OK, so you dig out the old books you haven't touched in months, maybe years, on introductory Java. They ignore the topic completely. File I/O? Date parsing? Ewwwww[...] That's *so* 20th century. Objects, Swing, and j2ee are SO much sexier and profitable to write about. What? You really DO need to soil your hands and do it? Well, you'll have to look elsewhere.
    That's where this book comes in. It covers all the non-glamourous stuff that 99% of the books on Java more or less ignore or gloss over. Things like I/O. Text handling. You get the idea. The stuff that everyone wants to just delegate to the servlet container or database, but occasionally you really DO need to deal with directly. There's not really anything in this book that you can't find online. But that's not the point... you can blow an hour or two scavenging the info and experimenting to make it work, or you can get the answer in 2 minutes with this book.
    Buy it. BEFORE you need it. You'll be glad you did.
  • Mello
    5つ星のうち3.0 Good potential let down by poor execution.
    2021年2月7日に英国でレビュー済み
    Amazonで購入
    In theory this format is ideal for learning Java idioms; in practice there are too many bad practice examples even though they have been pointed out in criticism of earlier editions.
  • Slavik Dimitrovich
    5つ星のうち5.0 Great book for the right audience.
    2002年6月5日にアメリカ合衆国でレビュー済み
    Amazonで購入
    Having owned (and read) a separate (mostly O'Reilly or Sun) book on almost every subject covered here, I didn't find almost anything new or exciting. This is not to say that the book is not good, but just to emphasize one more time that the intended audience have to be taken into consideration.
    I think this is a great learning book for intermediate Java programmers who already tried writing some Java programs, but don't have much practical experience yet.
    Beginners may not realize "why" these topics are picked for coverage and what are the important points of each example. Yet reading this book may help "prepare the soil" for reading other, special-topic books and source code.
    Experienced developers may not find anything eye-opening, as most of what is described in this book they have already learned, usually the hard way. Nevertheless, this book can be used as a good reference book, replacing a whole set of special-topic Java books.
    This book provides a good collection of advice about programming problems that occur most often during Java development. Explanations are mostly brief but clear. Code examples are very good. Writing style is clear, just enough humor to keep a reader from falling to sleep. Author's dislike for Windows is made a little too apparent throughout the book and is slightly annoying, but doesn't spoil the overall picture.
    To summ things up: a good buy, but you need to understand your needs/expecations.