Articoli correlati a Java Cookbook

Darwin, Ian F. Java Cookbook ISBN 13: 9780596001704

Java Cookbook - Brossura

 
9780596001704: Java Cookbook
Vedi tutte le copie di questo ISBN:
 
 

The Java Cookbook is a comprehensive collection of problems, solutions, and practical examples for anyone programming in Java. Developers will find hundreds of tried-and-true Java "recipes" covering all of the major APIs as well as some APIs that aren't as well documented in other Java books.The Java Cookbook, like the bestselling Perl Cookbook, covers a lot of ground, and offers Java developers short, focused pieces of code that can be easily incorporated into other programs. The idea is to focus on things that are useful, tricky, or both. The book includes code segments covering many specialized APIs--like media and servlets--and should serve as a great "jumping-off place" for Java developers who want to get started in areas outside of their specialization.The book provides quick solutions to particular problems that can be incorporated into other programs, but that aren't usually programs in and of themselves.

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

Contenuti:
Preface; Who This Book Is For; What’s in This Book?; Platform Notes; Other Books; Conventions Used in This Book; Comments and Questions; Getting the Source Code; Acknowledgments; Chapter 1: Getting Started: Compiling, Running, and Debugging; 1.1 Introduction; 1.2 Compiling and Running Java: JDK; 1.3 Editing and Compiling with a Color-Highlighting Editor; 1.4 Compiling, Running, and Testing with an IDE; 1.5 Using Classes from This Book; 1.6 Automating Compilation with jr; 1.7 Automating Compilation with make; 1.8 Automating Compilation with Ant; 1.9 Running Applets; 1.10 Dealing with Deprecation Warnings; 1.11 Conditional Debugging without #ifdef; 1.12 Debugging Printouts; 1.13 Using a Debugger; 1.14 Unit Testing: Avoid the Need for Debuggers; 1.15 Decompiling Java Class Files; 1.16 Preventing Others from Decompiling Your Java Files; 1.17 Getting Readable Tracebacks; 1.18 Finding More Java Source Code; 1.19 Program: Debug; Chapter 2: Interacting with the Environment; 2.1 Introduction; 2.2 Getting Environment Variables; 2.3 System Properties; 2.4 Writing JDK Release-Dependent Code; 2.5 Writing Operating System-Dependent Code; 2.6 Using CLASSPATH Effectively; 2.7 Using Extensions or Other Packaged APIs; 2.8 Parsing Command-Line Arguments; Chapter 3: Strings and Things; 3.1 Introduction; 3.2 Taking Strings Apart with Substrings; 3.3 Taking Strings Apart with StringTokenizer; 3.4 Putting Strings Together with + and StringBuffer; 3.5 Processing a String One Character at a Time; 3.6 Aligning Strings; 3.7 Converting Between Unicode Characters and Strings; 3.8 Reversing a String by Word or Character; 3.9 Expanding and Compressing Tabs; 3.10 Controlling Case; 3.11 Indenting Text Documents; 3.12 Entering Non-Printable Characters; 3.13 Trimming Blanks from the End of a String; 3.14 Parsing Comma-Separated Data; 3.15 Program: A Simple Text Formatter; 3.16 Program: Soundex Name Comparisons; Chapter 4: Pattern Matching with Regular Expressions; 4.1 Introduction; 4.2 Regular Expression Syntax; 4.3 How REs Work in Practice; 4.4 Using Regular Expressions in Java; 4.5 Testing REs Interactively; 4.6 Finding the Matching Text; 4.7 Replacing the Matching Text; 4.8 Printing All Occurrences of a Pattern; 4.9 Printing Lines Containing a Pattern; 4.10 Controlling Case in match( ) and subst( ); 4.11 Precompiling the RE; 4.12 Matching Newlines in Text; 4.13 Program: Data Mining; 4.14 Program: Full Grep; Chapter 5: Numbers; 5.1 Introduction; 5.2 Checking Whether a String Is a Valid Number; 5.3 Storing a Larger Number in a Smaller; 5.4 Taking a Fraction of an Integer Without Using Floating Point; 5.5 Ensuring the Accuracy of Floating-Point Numbers; 5.6 Comparing Floating-Point Numbers; 5.7 Rounding Floating-Point Numbers; 5.8 Formatting Numbers; 5.9 Converting Between Binary, Octal, Decimal, and Hexadecimal; 5.10 Operating on a Series of Integers; 5.11 Working with Roman Numerals; 5.12 Formatting with Correct Plurals; 5.13 Generating Random Numbers; 5.14 Generating Better Random Numbers; 5.15 Calculating Trigonometric Functions; 5.16 Taking Logarithms; 5.17 Multiplying Matrixes; 5.18 Using Complex Numbers; 5.19 Handling Very Large Numbers; 5.20 Program: TempConverter; 5.21 Program: Number Palindromes; Chapter 6: Dates and Times; 6.1 Introduction; 6.2 Finding Today’s Date; 6.3 Printing Date/Time in a Specified Format; 6.4 Representing Dates in Other Epochs; 6.5 Converting YMDHMS to a Calendar or Epoch Seconds; 6.6 Parsing Strings into Dates; 6.7 Converting Epoch Seconds to DMYHMS; 6.8 Adding to or Subtracting from a Date or Calendar; 6.9 Difference Between Two Dates; 6.10 Comparing Dates; 6.11 Day of Week/Month/Year or Week Number; 6.12 Calendar Page; 6.13 High-Resolution Timers; 6.14 Sleeping for a While; 6.15 Program: Reminder Service; Chapter 7: Structuring Data with Java; 7.1 Introduction; 7.2 Data Structuring Using Arrays; 7.3 Resizing an Array; 7.4 Like an Array, but More Dynamic; 7.5 Data-Independent Access with Iterators; 7.6 Structuring Data in a Linked List; 7.7 Mapping with Hashtable and HashMap; 7.8 Storing Strings in Properties and Preferences; 7.9 Sorting a Collection; 7.10 Sorting in Java 1.1; 7.11 Avoiding the Urge to Sort; 7.12 Sets; 7.13 Finding an Object in a Collection; 7.14 Converting a Collection to an Array; 7.15 Rolling Your Own Iterator; 7.16 Stack; 7.17 Multidimensional Structures; 7.18 Finally, Collections; 7.19 Program: Timing Comparisons; Chapter 8: Object-Oriented Techniques; 8.1 Introduction; 8.2 Printing Objects: Formatting with toString( ); 8.3 Overriding the Equals Method; 8.4 Overriding the Hashcode Method; 8.5 The Clone Method; 8.6 The Finalize Method; 8.7 Using Inner Classes; 8.8 Providing Callbacks via Interfaces; 8.9 Polymorphism/Abstract Methods; 8.10 Passing Values; 8.11 Roll Your Own Exceptions; 8.12 Program: Plotter; Chapter 9: Input and Output; 9.1 Introduction; 9.2 Reading Standard Input; 9.3 Writing Standard Output; 9.4 Opening a File by Name; 9.5 Copying a File; 9.6 Reading a File into a String; 9.7 Reassigning the Standard Streams; 9.8 Duplicating a Stream as It Is Written; 9.9 Reading/Writing a Different Character Set; 9.10 Those Pesky End-of-Line Characters; 9.11 Beware Platform-Dependent File Code; 9.12 Reading “Continued” Lines; 9.13 Scanning a File; 9.14 Binary Data; 9.15 Seeking; 9.16 Writing Data Streams from C; 9.17 Saving and Restoring Serialized Objects; 9.18 Preventing ClassCastExceptions with SerialVersionUID; 9.19 Reading and Writing JAR or Zip Archives; 9.20 Reading and Writing Compressed Files; 9.21 Program: Text to PostScript; 9.22 Program: TarList (File Converter); Chapter 10: Directory and Filesystem Operations; 10.1 Introduction; 10.2 Getting File Information; 10.3 Creating a File; 10.4 Renaming a File; 10.5 Deleting a File; 10.6 Creating a Transient File; 10.7 Changing File Attributes; 10.8 Listing a Directory; 10.9 Getting the Directory Roots; 10.10 Making New Directories; 10.11 Program: Find; Chapter 11: Programming Serial and Parallel Ports; 11.1 Introduction; 11.2 Choosing a Port; 11.3 Opening a Serial Port; 11.4 Opening a Parallel Port; 11.5 Resolving Port Conflicts; 11.6 Reading and Writing: Lock Step; 11.7 Reading and Writing: Event-Driven; 11.8 Reading and Writing: Threads; 11.9 Program: Penman Plotter; Chapter 12: Graphics and Sound; 12.1 Introduction; 12.2 Painting with a Graphics Object; 12.3 Testing Graphical Components; 12.4 Drawing Text; 12.5 Drawing Centered Text in a Component; 12.6 Drawing a Drop Shadow; 12.7 Drawing an Image; 12.8 Playing a Sound File; 12.9 Displaying a Moving Image with Video; 12.10 Drawing Text with 2D; 12.11 Printing: JDK 1.1; 12.12 Printing: Java 2; 12.13 Program: PlotterAWT; 12.14 Program: Grapher; Chapter 13: Graphical User Interfaces; 13.1 Introduction; 13.2 Displaying GUI Components; 13.3 Designing a Window Layout; 13.4 A Tabbed View of Life; 13.5 Action Handling: Making Buttons Work; 13.6 Action Handling Using Anonymous Inner Classes; 13.7 Terminating a Program with “Window Close”; 13.8 Dialogs: When Later Just Won’t Do; 13.9 Getting Program Output into a Window; 13.10 Choosing a File with JFileChooser; 13.11 Choosing a Color; 13.12 Centering a Main Window; 13.13 Changing a Swing Program’s Look and Feel; 13.14 Program: Custom Font Chooser; 13.15 Program: Custom Layout Manager; Chapter 14: Internationalization and Localization; 14.1 Introduction; 14.2 Creating a Button with I18N Resources; 14.3 Listing Available Locales; 14.4 Creating a Menu with I18N Resources; 14.5 Writing Internationalization Convenience Routines; 14.6 Creating a Dialog with I18N Resources; 14.7 Creating a Resource Bundle; 14.8 JILTing Your Code; 14.9 Using a Particular Locale; 14.10 Setting the Default Locale; 14.11 Formatting Messages; 14.12 Program: MenuIntl; 14.13 Program: BusCard; Chapter 15: Network Clients; 15.1 Introduction; 15.2 Contacting a Server; 15.3 Finding and Reporting Network Addresses; 15.4 Handling Network Errors; 15.5 Reading and Writing Textual Data; 15.6 Reading and Writing Binary Data; 15.7 Reading and Writing Serialized Data; 15.8 UDP Datagrams; 15.9 Program: TFTP UDP Client; 15.10 Program: Telnet Client; 15.11 Program: Chat Client; Chapter 16: Server-Side Java: Sockets; 16.1 Introduction; 16.2 Opening a Server for Business; 16.3 Returning a Response (String or Binary); 16.4 Returning Object Information; 16.5 Handling Multiple Clients; 16.6 Network Logging; 16.7 Program: A Java Chat Server; Chapter 17: Network Clients II: Applets and Web Clients; 17.1 Introduction; 17.2 Embedding Java in a Web Page; 17.3 Applet Techniques; 17.4 Contacting a Server on the Applet Host; 17.5 Making an Applet Show a Document; 17.6 Making an Applet Run a CGI Script; 17.7 Reading the Contents of a URL; 17.8 Extracting HTML from a URL; 17.9 Extracting URLs from a File; 17.10 Converting a Filename to a URL; 17.11 Program: MkIndex; 17.12 Program: LinkChecker; Chapter 18: Web Server Java: Servlets and JSP; 18.1 Introduction; 18.2 First Servlet: Generating an HTML Page; 18.3 Servlets: Processing Form Parameters; 18.4 Cookies; 18.5 Session Tracking; 18.6 Generating PDF from a Servlet; 18.7 HTML Meets Java: JSP; 18.8 JSP Include/Forward; 18.9 JavaServer Pages Using a Servlet; 18.10 Simplifying Your JSP with a JavaBean; 18.11 JSP Syntax Summary; 18.12 Program: CookieCutter; 18.13 Program: JabaDot Web News Portal; Chapter 19: Java and Electronic Mail; 19.1 Introduction; 19.2 Sending Email: Browser Version; 19.3 Sending Email: For Real; 19.4 Mail-Enabling a Server Program; 19.5 Sending MIME Mail; 19.6 Providing Mail Settings; 19.7 Sending Mail Without Using JavaMail; 19.8 Reading Email; 19.9 Program: MailReaderBean; 19.10 Program: MailClient; Chapter 20: Database Access; 20.1 Introduction; 20.2 Text-File Databases; 20.3 DBM Databases; 20.4 JDBC Setup and Connection; 20.5 Connecting to a JDBC Database; 20.6 Sending a JDBC Query and Getting Results; 20.7 Using JDBC Parameterized Statements; 20.8 Using Stored Procedures with JDBC; 20.9 Changing Data Using a ResultSet; 20.10 Changing Data Using SQL; 20.11 Finding JDBC Metadata; 20.12 Program: JDAdmin; Chapter 21: XML; 21.1 Introduction; 21.2 Transforming XML with XSLT; 21.3 Parsing XML with SAX; 21.4 Parsing XML with DOM; 21.5 Verifying Structure with a DTD; 21.6 Generating Your Own XML with DOM; 21.7 Program: xml2mif; Chapter 22: Distributed Java: RMI; 22.1 Introduction; 22.2 Defining the RMI Contract; 22.3 RMI Client; 22.4 RMI Server; 22.5 Deploying RMI Across a Network; 22.6 Program: RMI Callbacks; 22.7 Program: RMIWatch; Chapter 23: Packages and Packaging; 23.1 Introduction; 23.2 Creating a Package; 23.3 Documenting Classes with Javadoc; 23.4 Archiving with jar; 23.5 Running an Applet from a JAR; 23.6 Running an Applet with a JDK; 23.7 Running a Program from a JAR; 23.8 Preparing a Class as a JavaBean; 23.9 Pickling Your Bean into a JAR; 23.10 Packaging a Servlet into a WAR File; 23.11 “Write Once, Install Anywhere”; 23.12 Java Web Start; 23.13 Signing Your JAR File; Chapter 24: Threaded Java; 24.1 Introduction; 24.2 Running Code in a Different Thread; 24.3 Displaying a Moving Image with Animation; 24.4 Stopping a Thread; 24.5 Rendezvous and Timeouts; 24.6 Thread Communication: Synchronized Code; 24.7 Thread Communication: wait( ) and notifyAll( ); 24.8 Background Saving in an Editor; 24.9 Threaded Network Server; Chapter 25: Introspection, or “A Class Named Class”; 25.1 Introduction; 25.2 Getting a Class Descriptor; 25.3 Finding and Using Methods and Fields; 25.4 Loading and Instantiating a Class Dynamically; 25.5 Constructing a Class from Scratch; 25.6 Performance Timing; 25.7 Printing Class Information; 25.8 Program: CrossRef; 25.9 Program: AppletViewer; Chapter 26: Using Java with Other Languages; 26.1 Introduction; 26.2 Running a Program; 26.3 Running a Program and Capturing Its Output; 26.4 Mixing Java and Scripts with BSF; 26.5 Blending in Native Code (C/C++); 26.6 Calling Java from Native Code; 26.7 Program: DBM; Chapter 27: Afterword; Colophon;
Product Description:
Book by Ian F Darwin

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

  • EditoreOreilly & Associates Inc
  • Data di pubblicazione2001
  • ISBN 10 0596001703
  • ISBN 13 9780596001704
  • RilegaturaCopertina flessibile
  • Numero di pagine888
  • Valutazione libreria

Altre edizioni note dello stesso titolo

9780596007010: Java Cookbook

Edizione in evidenza

ISBN 10:  0596007019 ISBN 13:  9780596007010
Casa editrice: Oreilly & Associates Inc, 2004
Brossura

I migliori risultati di ricerca su AbeBooks

Foto dell'editore

Ian F. Darwin
Editore: O'Reilly Media (2001)
ISBN 10: 0596001703 ISBN 13: 9780596001704
Nuovo Soft cover Prima edizione Quantità: 1
Da:
BooksByLisa
(Highland Park, IL, U.S.A.)
Valutazione libreria

Descrizione libro Soft cover. Condizione: New. 1st Edition. STORED NEW PRISTINE CONDITION SANITIZED THEN WRAPPED. Book. Codice articolo ABE-1666715636504

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 13,48
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Immagini fornite dal venditore

Ian F. Darwin
Editore: O'Reilly Media (2001)
ISBN 10: 0596001703 ISBN 13: 9780596001704
Nuovo Paperback Quantità: 1
Da:
Mom's Resale and Books
(River Hills, WI, U.S.A.)
Valutazione libreria

Descrizione libro Paperback. Condizione: New. NEW! 2001 Soft Cover Edition. Codice articolo 15D-3-16-21-01

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 16,32
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 4,66
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Darwin, Ian F.
ISBN 10: 0596001703 ISBN 13: 9780596001704
Nuovo Paperback Quantità: 1
Da:
Wizard Books
(Long Beach, CA, U.S.A.)
Valutazione libreria

Descrizione libro Paperback. Condizione: new. New. Codice articolo Wizard0596001703

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 25,35
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,27
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Darwin, Ian F.
ISBN 10: 0596001703 ISBN 13: 9780596001704
Nuovo Brossura Quantità: 1
Da:
GF Books, Inc.
(Hawthorne, CA, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Book is in NEW condition. Codice articolo 0596001703-2-1

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 28,67
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Darwin, Ian F.
ISBN 10: 0596001703 ISBN 13: 9780596001704
Nuovo Brossura Quantità: 1
Da:
Book Deals
(Tucson, AZ, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. New! This book is in the same immaculate condition as when it was published. Codice articolo 353-0596001703-new

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 28,68
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Darwin, Ian F.
ISBN 10: 0596001703 ISBN 13: 9780596001704
Nuovo Paperback Quantità: 1
Da:
GoldBooks
(Denver, CO, U.S.A.)
Valutazione libreria

Descrizione libro Paperback. Condizione: new. New Copy. Customer Service Guaranteed. Codice articolo think0596001703

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 25,80
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,97
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Ian F. Darwin
Editore: O'Reilly Media (2001)
ISBN 10: 0596001703 ISBN 13: 9780596001704
Nuovo Paperback Quantità: 1
Da:
The Book Spot
(Sioux Falls, SD, U.S.A.)
Valutazione libreria

Descrizione libro Paperback. Condizione: New. Codice articolo Abebooks174058

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 56,80
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi