Letzte Suchanfragen

Ergebnisse für *

Es wurden 19 Ergebnisse gefunden.

Zeige Ergebnisse 1 bis 19 von 19.

Sortieren

  1. Java 8 recipes
    [apply proven solutions to speed up your Java 8 development]
    Autor*in: Juneau, Josh
    Erschienen: 2014
    Verlag:  Apress, New York, NY

    Humboldt-Universität zu Berlin, Universitätsbibliothek, Jacob-und-Wilhelm-Grimm-Zentrum
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Buch (Monographie)
    ISBN: 9781430268277; 9781430268260
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: 2. ed.
    Schriftenreihe: The expert's voice in Java
    Books for professionals by professionals
    Schlagworte: Java Standard Edition 8
    Umfang: XLVIII, 590 S., Ill.
  2. Java 9 recipes
    a problem-solution approach
    Autor*in: Juneau, Josh
    Erschienen: [2017]; © 2017
    Verlag:  Apress, [New York, NY]

    Hochschule für Technik und Wirtschaft Berlin, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    TU Berlin, Universitätsbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Brandenburgische Technische Universität Cottbus - Senftenberg, Universitätsbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Volltext (URL des Erstveröffentlichers)
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781484219768
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Third edition
    Schlagworte: Computer science; Computer programming; Programming languages (Electronic computers); Computer Science; Java; Programming Languages, Compilers, Interpreters; Programming Techniques; Informatik; Java Standard Edition 9
    Umfang: 1 Online-Ressource (xlix, 626 Seiten), Illustrationen
  3. Java 7 recipes
    a problem-solution approach
    Autor*in:
    Erschienen: 2012
    Verlag:  Apress, [New York]

    Max-Planck-Institut für ethnologische Forschung, Bibliothek
    keine Fernleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Volltext (Connect to this resource online)
    Quelle: Verbundkataloge
    Beteiligt: Juneau, Josh
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430240563
    RVK Klassifikation: ST 250
    Schlagworte: Java (Computer program language)
    Umfang: Online-Ressource (xxii, 848 p), ill
    Bemerkung(en):

    Includes index

    Electronic reproduction; Available via World Wide Web

  4. Java 9 recipes
    a problem-solution approach
    Autor*in: Juneau, Josh
    Erschienen: 2017
    Verlag:  Apress, Berkeley, CA

    Contents at a Glance -- Contents -- About the Author -- About the Technical Reviewer -- Acknowledgments -- Introduction -- Chapter 1: Getting Started with Java 9 -- 1-1. Creating a Development Environment -- Problem -- Solution -- How It Works --... mehr

    Staats- und Universitätsbibliothek Bremen
    keine Fernleihe
    Universitätsbibliothek Kiel, Zentralbibliothek
    keine Fernleihe
    Hochschulbibliothek Friedensau
    Online-Ressource
    keine Fernleihe
    Universität Ulm, Kommunikations- und Informationszentrum, Bibliotheksservices
    keine Fernleihe

     

    Contents at a Glance -- Contents -- About the Author -- About the Technical Reviewer -- Acknowledgments -- Introduction -- Chapter 1: Getting Started with Java 9 -- 1-1. Creating a Development Environment -- Problem -- Solution -- How It Works -- 1-2. Getting to "Hello, World" -- Problem -- Solution -- How It Works -- Packages -- JavaBeans-Style Classes -- The Main Program -- 1-3. Configuring the CLASSPATH -- Problem -- Solution -- How It Works -- 1-4. Organizing Code with Packages -- Problem -- Solution -- How It Works -- 1-5. Declaring Variables and Access Modifiers -- Problem -- Solution -- How It Works -- 1-6. Compiling and Executing from the Command-Line or Terminal Interpreter -- Problem -- Solution -- How It Works -- 1-7. Developing Within the Interactive jShell -- Problem -- Solution -- How It Works -- 1-8. Converting to and from a String -- Problem -- Solution -- How It Works -- 1-9. Passing Arguments via Command-Line Execution -- Problem -- Solution -- How It Works -- 1-10. Executing a Script via the jShell -- Problem -- Solution -- How It Works -- 1-11. Accepting Input from the Keyboard -- Problem -- Solution -- How It Works -- 1-12. Documenting Your Code -- Problem -- Solution -- How It Works -- Formatting the Documentation -- Executing the Tool -- 1-13. Reading Environment Variables -- Problem -- Solution -- How It Works -- Summary -- Chapter 2: Java 9 Enhancements -- 2-1. Avoiding Redundancy in Interface Code -- Problem -- Solution -- How It Works -- 2-2. Creating Modules for Simplifying and Code Reuse -- Problem -- Solution -- How It Works -- 2-3. Easily Retrieving Information on OS Processes -- Problem -- Solution -- How It Works -- 2-4. Handling Errors with Ease -- Problem -- Solution -- How It Works -- 2-5. Filtering Data Before and After a Condition with Streams -- Problem -- Solution -- How It Works 2-6. Developing a Concise HTTP Client -- Problem -- Solution -- How It Works -- 2-7. Redirecting Platform Logs -- Problem -- Solution -- How It Works -- 2-8. Utilizing Factory Methods to Create Immutable Collections -- Problem -- Solution -- How It Works -- Summary -- Chapter 3: Strings -- Compact Strings: Java 9 String Enhancements -- 3-1. Obtaining a Subsection of a String -- Problem -- Solution -- How It Works -- 3-2. Comparing Strings -- Problem -- Solution -- How It Works -- 3-3. Trimming Whitespace -- Problem -- Solution -- How It Works -- 3-4. Changing the Case of a String -- Problem -- Solution -- How It Works -- 3-5. Concatenating Strings -- Problem -- Solution 1 -- Solution 2 -- Solution 3 -- How It Works -- 3-6. Converting Strings to Numeric Values -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 3-7. Iterating Over the Characters of a String -- Problem -- Solution -- How It Works -- 3-8. Finding Text Matches -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 3-9. Replacing All Text Matches -- Problem -- Solution -- How It Works -- 3-10. Determining Whether a File Suffix Matches a Given String -- Problem -- Solution -- How It Works -- 3-11. Making a String That Can Contain Dynamic Information -- Problem -- Solution 1 -- Solution 2 -- How It Works -- Summary -- Chapter 4: Numbers and Dates -- 4-1. Rounding Float and Double Values to Integers -- Problem -- Solution -- How It Works -- 4-2. Formatting Double and Long Decimal Values -- Problem -- Solution -- How It Works -- 4-3. Comparing int Values -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 4-4. Comparing Floating-Point Numbers -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 4-5. Calculating Monetary Values -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 4-6. Randomly Generating Values -- Problem -- Solution 1 -- Solution 2 -- How It Works 4-7. Obtaining the Current Date Without Time -- Problem -- Solution -- How It Works -- 4-8. Obtaining a Date Object Given Date Criteria -- Problem -- Solution -- How It Works -- 4-9. Obtaining a Year-Month-Day Date Combination -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 4-10. Obtaining and Calculating Times Based on the Current Time -- Problem -- Solution -- How It Works -- 4-11. Obtaining and Using the Date and Time Together -- Problem -- Solution 1 -- Solution 2 -- Solution 3 -- How It Works -- 4-12. Obtaining a Machine Timestamp -- Problem -- Solution -- How It Works -- 4-13. Converting Dates and Times Based on the Time Zone -- Problem -- Solution -- How It Works -- 4-14. Comparing Two Dates -- Problem -- Solution -- How It Works -- 4-15. Finding the Interval Between Dates and Times -- Problem -- Solution 1 -- Solution 2 -- Solution 3 -- How It Works -- 4-16. Obtaining Date-Time from a Specified String -- Problem -- Solution -- How It Works -- 4-17. Formatting Dates for Display -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 4-18. Writing Readable Numeric Literals -- Problem -- Solution -- How It Works -- 4-19. Declaring Binary Literals -- Problem -- Solution -- How It Works -- Summary -- Chapter 5: Object-Oriented Java -- 5-1. Controlling Access to Members of a Class -- Problem -- Solution -- How It Works -- 5-2. Making Private Fields Accessible to Other Classes -- Problem -- Solution -- How It Works -- 5-3. Creating a Class with a Single Instance -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 5-4. Generating Instances of a Class -- Problem -- Solution -- How It Works -- 5-5. Creating Reusable Objects -- Problem -- Solution -- How It Works -- 5-6. Defining an Interface for a Class -- Problem -- Solution -- How It Works -- 5-7. Modifying Interfaces Without Breaking Existing Code -- Problem -- Solution How It Works -- 5-8. Constructing Instances of the Same Class with Different Values -- Problem -- Solution -- How It Works -- 5-9. Interacting with a Class via Interfaces -- Problem -- Solution -- How It Works -- 5-10. Making a Class Cloneable -- Problem -- Solution -- How It Works -- 5-11. Comparing Objects -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 5-12. Extending the Functionality of a Class -- Problem -- Solution -- How It Works -- 5-13. Defining a Template for Classes to Extend -- Problem -- Solution -- How It Works -- 5-14. Increasing Class Encapsulation -- Problem -- Solution -- How It Works -- Summary -- Chapter 6: Lambda Expressions -- 6-1. Writing a Simple Lambda Expression -- Problem -- Solution -- How It Works -- 6-2. Enabling the Use of Lambda Expressions -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 6-3. Invoking Existing Methods by Name -- Problem -- Solution -- How It Works -- 6-4. Sorting with Fewer Lines of Code -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 6-5. Filtering a Collection of Data -- Problem -- Solution -- How It Works -- 6-6. Implementing Runnable -- Problem -- Solution -- How It Works -- 6-7. Replacing Anonymous Inner Classes -- Problem -- Solution -- How It Works -- 6-8. Accessing Class Variables from a Lambda Expression -- Problem -- Solution -- How It Works -- 6-9. Passing Lambda Expressions to Methods -- Problem -- Solution -- How It Works -- Summary -- Chapter 7: Data Sources and Collections -- 7-1. Defining a Fixed Set of Related Constants -- Problem -- Solution -- How It Works -- 7-2. Designing Intelligent Constants -- Problem -- Solution -- How It Works -- 7-3. Executing Code Based on a Specified Value -- Problem -- Solution -- How It Works -- 7-4. Working with Fix-Sized Arrays -- Problem -- Solution -- How It Works 7-5. Safely Enabling Types or Methods to Operate on Objects of Various Types -- Problem -- Solution -- How It Works -- 7-6. Working with Dynamic Arrays -- Problem -- Solution -- How It Works -- 7-7. Making Your Objects Iterable -- Problem -- Solution -- How It Works -- 7-8. Iterating Over Collections -- Problem -- Solution -- How It Works -- 7-9. Iterating Over a Map -- Problem -- Solution -- How It Works -- 7-10. Executing Streams in Parallel -- Problem -- Solution -- How It Works -- Summary -- Chapter 8: Input and Output -- 8-1. Serializing Java Objects -- Problem -- Solution -- How It Works -- 8-2. Serializing Java Objects More Efficiently -- Problem -- Solution -- How It Works -- 8-3. Serializing Java Objects as XML -- Problem -- Solution -- How It Works -- 8-4. Creating a Socket Connection and Sending Serializable Objects Across the Wire -- Problem -- Solution -- How It Works -- 8-5. Obtaining the Java Execution Path -- Problem -- Solution -- How It Works -- 8-6. Copying a File -- Problem -- Solution -- How It Works -- 8-7. Moving a File -- Problem -- Solution -- How It Works -- 8-8. Creating a Directory -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 8-9. Iterating Over Files in a Directory -- Problem -- Solution -- How It Works -- 8-10. Querying (and Setting) File Metadata -- Problem -- Solution -- How It Works -- 8-11. Monitoring a Directory for Content Changes -- Problem -- Solution -- How It Works -- 8-12. Reading Property Files -- Problem -- Solution -- How It Works -- 8-13. Uncompressing Files -- Problem -- Solution -- How It Works -- 8-14. Managing Operating System Processes -- Problem -- Solution -- How It Works -- Summary -- Chapter 9: Exceptions and Logging -- 9-1. Catching Exceptions -- Problem -- Solution -- How It Works -- 9-2. Guaranteeing a Block of Code Is Executed -- Problem -- Solution -- How It Works 9-3. Throwing Exceptions

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Volltext (Lizenzpflichtig)
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781484219768
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Third edition
    Schlagworte: Computer science; Computer science; Electronic books
    Umfang: 1 Online-Ressource (661 pages)
  5. Introducing java EE 7
    a look at what's new
    Autor*in: Juneau, Josh
    Erschienen: c2013
    Verlag:  Apress, New York

    Introducing Java EE 7:  A Look at What's New guides you through the new features and enhancements in each of the technologies comprising the Java EE platform.  Readers of this book will not have to wade through introductory material or information... mehr

    Hochschulbibliothek Friedensau
    Online-Ressource
    keine Fernleihe
    Universität Ulm, Kommunikations- und Informationszentrum, Bibliotheksservices
    keine Fernleihe

     

    Introducing Java EE 7:  A Look at What's New guides you through the new features and enhancements in each of the technologies comprising the Java EE platform.  Readers of this book will not have to wade through introductory material or information covering features that have been part of the EE platform for years.  Instead, developers can pick this book up and read it to brush up on those features that have changed or have been added for the EE 7 release.  This handy reference helps you move forward from Java EE 6 to the new EE 7 platform quickly and easily. Java is a mature programming langua

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Volltext (Connect to MyiLibrary resource)
    Volltext (Lizenzpflichtig)
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 1306161711; 9781430258490; 9781306161718
    RVK Klassifikation: ST 250
    Schlagworte: Internet programming; Java (Computer program language); Java (Computer program language); Object-oriented programming language; Electronic books
    Umfang: Online-Ressource (xxiii, 214 p), ill
    Bemerkung(en):

    Description based upon print version of record

    Contents at a Glance; Introduction; Chapter 1: New Servlet Features; Non-Blocking I/O; Upgrade Protocol; Enhanced FileUpload; Filter Life Cycle; Security Enhancements; Specifying an Identity for Executing init and destroy Methods; Thwarting Session Fixation Attack; Denying Uncovered HTTP Methods; Changing the Content Length; Summary; Chapter 2: JavaServer Faces and Facelets; View Actions; Faces Flow; Defining a Flow; The Flow Managed Bean; Navigating View Nodes; Flow EL; Java API for Flow Context; Packaging a Flow; Ajax Queues; File Upload; Stateless Views; HTML5 and JSF

    Passthrough AttributesHTML5-Friendly Markup; Facelets Enhancements; Exclude XML from Custom Components; FaceletsResourceResolver Annotation; Resource Library Contracts; Security Enhancements; Summary; Chapter 3: Expression Language (EL); Lambda Expressions; Lambda Concept and Examples; Variable Assignment; Nesting; Passing Lambdas to Java; Collections Enhancements; Sets; Maps; Lists; Supporting Operations; New Operators; String Concatenation Operator; Assignment Operator; Semicolon Operator; Precedence Changes; Static Field and Methods; Stand-Alone API; Defining a Bean; Declaring a Variable

    Defining a FunctionUtilizing the ELManager; Incompatibilities with Previous Releases; Summary; Chapter 4: Object Relational Mapping and JPA; Support for Joins with ON Conditions; Invocation of Database Functions; Bulk Updates and Deletions; Downcasting in the FROM and WHERE clauses; Schema Generation; Support for Database Stored Procedures; Synchronization of Persistence Contexts; Entity Listeners using CDI; Summary; Chapter 5: Business Logic Using EJB; General Updates and Improvements; Transaction Life-Cycle Callbacks in Session Beans; Passivation Made Optional

    Explicitly Denoting Local and Remote Business InterfacesExtended TimerService API; JMS Alignment; Embeddable EJBContainer Now Autocloseable; New Features in EJB Lite; Optional Features; Summary; Chapter 6: Validating Data; An Overview of Bean Validation with Java EE; Constraint Validation Annotations; Review: Utilizing Different Validation Techniques; Review: Writing a Custom Constraint Annotation; Contexts and Dependency Injection Integration; ValidatorFactory and Validator Injection; Managed Instances of Requested Classes; Method Validation; Declaring Parameter Constraints

    Declaring Return Value ConstraintsCascaded Validation; Customizing Method, Constructor, or Getter Validation; Manual Method Level Validation Invocation; Group Conversion; Group Validation; Specifying the Order of Group Validation; Group Conversion; Message Interpolation via EL; A Truly Open API; Summary; Chapter 7: Contexts and Dependency Injection; Brief Overview of CDI; Dependency Injection; Injection of Bean Metadata; Injection of the ServletContext; Marking Classes as Ignored by CDI; Producers; Programmatic Lookup; Container Life-Cycle Events; Priorities; Interceptors; Decorators

    Alternatives

  6. Java 8 Recipes
    Autor*in: Juneau, Josh
    Erschienen: 2014
    Verlag:  Apress, Berkeley, CA

    Java 8 Recipes offers solutions to common programming problems encountered while developing Java-based applications. Fully updated with the newest features and techniques available, Java 8 Recipes provides code examples involving Lambdas, embedded... mehr

    Helmut-Schmidt-Universität, Universität der Bundeswehr Hamburg, Universitätsbibliothek
    keine Fernleihe
    Staats- und Universitätsbibliothek Hamburg Carl von Ossietzky
    keine Fernleihe
    Technische Universität Hamburg, Universitätsbibliothek
    keine Fernleihe
    Technische Informationsbibliothek (TIB) / Leibniz-Informationszentrum Technik und Naturwissenschaften und Universitätsbibliothek
    keine Fernleihe
    Otto-von-Guericke-Universität, Universitätsbibliothek
    eBook Springer
    keine Fernleihe
    Otto-von-Guericke-Universität, Universitätsbibliothek, Medizinische Zentralbibliothek
    eBook Springer
    keine Fernleihe
    Hochschulbibliothek Friedensau
    Online-Ressource
    keine Fernleihe
    Bibliotheks-und Informationssystem der Carl von Ossietzky Universität Oldenburg (BIS)
    keine Fernleihe
    Bibliotheks-und Informationssystem der Carl von Ossietzky Universität Oldenburg (BIS)
    keine Fernleihe
    Bibliotheks-und Informationssystem der Carl von Ossietzky Universität Oldenburg (BIS)
    keine Fernleihe

     

    Java 8 Recipes offers solutions to common programming problems encountered while developing Java-based applications. Fully updated with the newest features and techniques available, Java 8 Recipes provides code examples involving Lambdas, embedded scripting with Nashorn, the new date-time API, stream support, functional interfaces, and much more. Especial emphasis is given to features such as lambdas that are newly introduced in Java 8. Content is presented in the popular problem-solution format: Look up the programming problem that you want to solve. Read the solution. Apply the solution directly in your own code. Problem solved! The problem-solution approach sets Java 8 Recipes apart. Java 8 Recipes is focused less on the language itself and more on what you can do with it that is useful. The book respects your time by always focusing on a task that you might want to perform using the language. Solutions come first. Explanations come later. You are free to crib from the book and apply the code examples directly to your own projects. Covers the newly-released Java 8, including a brand new chapter on lambdas Focuses especially on up-and-coming technologies such as Project Nashorn and Java FX 2.0 Respects your time by focusing on practical solutions you can implement in your own code

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Volltext (Lizenzpflichtig)
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430268260
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Second Edition
    Schriftenreihe: The expert's voice in Java
    Schlagworte: Computer science
    Umfang: Online-Ressource (XLIV, 800 p. 66 illus), online resource
    Bemerkung(en):

    Description based upon print version of record

    Contents at a Glance; Introduction; Chapter 1: Getting Started with Java 8; 1-1. Creating a Development Environment; Problem; Solution; How It Works; 1-2. Getting to "Hello, World"; Problem; Solution; How It Works; Packages; JavaBeans-Style Classes; The Main Program; 1-3. Compiling and Executing from the Command-line Interpreter; Problem; Solution; How It Works; 1-4. Declaring Simple Variables; Problem; Solution; How It Works; 1-5. Converting to and from a String; Problem; Solution; How It Works; 1-6. Passing Arguments via Command-Line Execution; Problem; Solution; How It Works

    1-7. Accepting Input from the KeyboardProblem; Solution; How It Works; 1-8. Documenting Your Code; Problem; Solution; How It Works; Formatting the Documentation; Executing the Tool; 1-9. Organizing Code with Packages; Problem; Solution; How It Works; 1-10. Configuring the CLASSPATH; Problem; Solution; How It Works; 1-11. Reading Environment Variable s; Problem; Solution; How It Works; Summary; Chapter 2: New Features of Java 8; Java Language Enhancements; 2-1. Passing Functionality as a Method Argument; Problem; Solution; How It Works

    2-2. Calling On an Existing Method from a Lambda ExpressionProblem; Solution; How It Works; 2-3. Providing a Default Method Implementation in an Interface; Problem; Solution; How It Works; 2-4. Applying the Same Annotation Multiple Times in a Declaration or Type Use; Problem; Solution; How It Works; Date-Time API; 2-5. Incorporating the Current Date and Time; Problem; Solution; How It Works; 2-6. Obtaining a Date from a Specified String; Problem; Solution; How It Works; 2-7. Performing Date-Time Calculations; Problem; Solution; How It Works; Streams API

    2-8. Iterating Over a Collection of DataProblem; Solution; How It Works; JavaFX; 2-9. Embedding Swing in JavaFX; Problem; Solution; How It Works; 2-10. Adding a DatePicker; Problem; Solution; How It Works; 2-11. Printing from JavaFX; Problem; Solution; How It Works; Scripting; 2-12. Embedding JavaScript in Your Java Application; Problem; Solution; How It Works; 2-13. Executing JavaScript from the Command-Line; Problem; Solution; How It Works; Summary; Chapter 3: Strings; 3-1. Obtaining a Subsection of a String; Problem; Solution; How It Works; 3-2. Comparing Strings; Problem; Solution

    How It Works3-3. Trimming Whitespace; Problem; Solution; How It Works; 3-4. Changing the Case of a String; Problem; Solution; How It Works; 3-5. Concatenating Strings; Problem; Solution #1; Solution #2; Solution #3; How It Works; 3-6. Converting Strings to Numeric Values; Problem; Solution #1; Solution #2; How It Works; 3-7. Iterating Over the Characters of a String; Problem; Solution; How It Works; 3-8. Finding Text Matches; Problem; Solution #1; Solution #2; How It Works; 3-9. Replacing All Text Matches; Problem; Solution; How It Works

    3-10. Determining Whether a File Name Ends with a Given String

  7. Java 8 recipes
    [apply proven solutions to speed up your Java 8 development]
    Autor*in: Juneau, Josh
    Erschienen: 2014
    Verlag:  Apress/Springer, New York, NY

    Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Universität Bergakademie Freiberg, Bibliothek 'Georgius Agricola'
    15.6104 8.
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Informationsbibliothek (TIB) / Leibniz-Informationszentrum Technik und Naturwissenschaften und Universitätsbibliothek
    T 15 B 2718
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Leipzig
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Buch (Monographie)
    Format: Druck
    ISBN: 9781430268277
    Weitere Identifier:
    9781430268277
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: 2. ed.
    Schriftenreihe: The expert's voice in Java
    Books for professionals by professionals
    Schlagworte: Java Standard Edition 8;
    Umfang: XLVIII, 590 S., Ill., graph. Darst
    Bemerkung(en):

    Distributed to the book trade worldwide by Springer Science+Business Media

  8. Java EE 7 recipes
    a problem-solution approach ; [proven solutions for JAVA Enterprise Edition 7 development]
    Autor*in: Juneau, Josh
    Erschienen: 2013
    Verlag:  Apress, [S.l.] ; Springer, New York, NY

    Zentrale Hochschulbibliothek Flensburg
    ST 250 J35 J95
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Informationsbibliothek (TIB) / Leibniz-Informationszentrum Technik und Naturwissenschaften und Universitätsbibliothek
    T 13 B 4866
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Osnabrück
    TXK / Jav / Jun
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Buch (Monographie)
    Format: Druck
    ISBN: 9781430244257
    RVK Klassifikation: ST 250
    Schriftenreihe: The expert's voice in JAVA
    Books for professionals by professionals
    Schlagworte: Java (Computer program language)
    Umfang: xlvi, 699 p., ill
    Bemerkung(en):

    Distributed to the book trade worldwide by Springer Science + Business Media New York

    Includes index

  9. Java 7 recipes
    a problem-solution approach ; [apply proven solutions to speed up your Java 7 development]
    Autor*in:
    Erschienen: 2012
    Verlag:  Apress, New York, NY ; Springer

    Technische Informationsbibliothek (TIB) / Leibniz-Informationszentrum Technik und Naturwissenschaften und Universitätsbibliothek
    T 12 B 4462
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Beteiligt: Juneau, Josh
    Sprache: Englisch
    Medientyp: Buch (Monographie)
    Format: Druck
    ISBN: 9781430240563
    RVK Klassifikation: ST 250
    Schriftenreihe: The expert's voice in Java
    Books for professionals by professionals
    Schlagworte: Java (Computer program language); Application software
    Umfang: XXII, 848 S., Ill., graph. Darst.
    Bemerkung(en):

    Getting started with Java 7 -- Strings -- Numbers and dates -- Data structures, conditionals, and iteration -- Input and output -- Exceptions and logging -- Object-oriented Java -- Concurrency -- Debugging and unit testing -- Unicode, internationalization, and currency codes -- Working with databases -- Java 2D graphics -- Java 3D -- Swing API -- JavaFX fundamentals -- Graphics with JavaFX -- Media with JavaFX -- Working with servlets and applets -- Intro to Android -- JavaFX on the web -- E-mail -- XML processing -- Networking.

  10. Java 7 Recipes
    A Problem-Solution Approach
    Autor*in: Juneau, Josh
    Erschienen: 2011
    Verlag:  Apress, Berkeley, CA

    Java 7 Recipes offers solutions to common programming problems encountered every day while developing Java-based applications. Fully updated with the newest features and techniques available, Java 7 Recipes provides code examples involving Servlets,... mehr

    Staats- und Universitätsbibliothek Hamburg Carl von Ossietzky
    keine Fernleihe
    Technische Universität Hamburg, Universitätsbibliothek
    keine Fernleihe
    Otto-von-Guericke-Universität, Universitätsbibliothek
    eBook Springer
    keine Fernleihe
    Otto-von-Guericke-Universität, Universitätsbibliothek, Medizinische Zentralbibliothek
    eBook Springer
    keine Fernleihe
    Hochschulbibliothek Friedensau
    Online-Ressource
    keine Fernleihe

     

    Java 7 Recipes offers solutions to common programming problems encountered every day while developing Java-based applications. Fully updated with the newest features and techniques available, Java 7 Recipes provides code examples involving Servlets, Java FX 2.0, XML, Java Swing, and much more. Content is presented in the popular problem-solution format: Look up the programming problem that you want to solve. Read the solution. Apply the solution directly in your own code. Problem solved! Java 7 Recipes offers solutions to common programming problems encountered every day while developing Java-based applications. Fully updated with the newest features and techniques available, Java 7 Recipes provides code examples involving Servlets, Java FX 2.0, XML, Java Swing, and much more. Content is presented in the popular problem-solution format: Look up the programming problem that you want to solve. Read the solution. Apply the solution directly in your own code. Problem solved! The problem-solution approach sets Java 7 Recipes apart from other books on the topic. Java 7 Recipes is fo

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Beteiligt: Dea, Carl; Guime, Freddy; O’Conner, John; OConner, John
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430240570
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Schriftenreihe: The expert's voice in Java
    Schlagworte: Computer science
    Umfang: Online-Ressource
    Bemerkung(en):

    Description based upon print version of record

    Title Page; Copyright Page; Contents at a Glance; Table of Contents; About the Authors; About the Technical Reviewers; Acknowledgments; Introduction; Who This Book Is For; How This Book Is Structured; CHAPTER 1 Getting Started with Java 7; 1-1. Downloading and Installing Java 7; Problem; Solution; How It Works; 1-2. Configuring the CLASSPATH; Problem; Solution; How It Works; 1-3. Writing an Executable Java Class; Problem; Solution; How It Works; 1-4. Compiling and Executing Java Class; Problem; Solution; How It Works; 1-5. Printing Output; Problem; Solution; How It Works

    1-6. Passing Arguments via the Command LineProblem; Solution; How It Works; 1-7. Obtaining and Setting Environment Variable Values; Problem; Solution; How It Works; 1-8. Documenting Code with Javadoc; Problem; Solution; How It Works; 1-9. Marking Features as Deprecated; Problem; Solution; How It Works; 1-10. Creating Methods in a Class; Problem; Solution; How It Works; 1-11. Passing Arguments to Methods and Returning Values; Problem; Solution; How It Works; 1-12. Organizing Code with Packages; Problem; Solution; How It Works; 1-13. Accepting Keyboard Input from the Command Line; Problem

    SolutionHow It Works; CHAPTER 2 Strings; 2-1. Obtaining a Subsection of a String; Problem; Solution; How It Works; 2-2. Comparing Strings; Problem; Solution; How It Works; 2-3. Trimming Whitespace; Problem; Solution; How It Works; 2-4. Changing the Case of a String; Problem; Solution; How It Works; 2-5. Concatenating Strings; Problem; Solution #1; Solution #2; Solution #3; How It Works; 2-6. Converting Strings to Numeric Values; Problem; Solution #1; Solution #2; How It Works; 2-7. Iterating Over the Characters of a String; Problem; Solution; How It Works; 2-8. Finding Text Matches; Problem

    Solution #1Solution #2; How It Works; 2-9. Replacing All Text Matches; Problem; Solution; How It Works; 2-10. Determining Whether a File Name Ends with a Given String; Problem; Solution; How It Works; CHAPTER 3 Numbers and Dates; 3-1. Rounding Float and Double Values to Integers; Problem; Solution; How It Works; 3-2. Formatting Double and Long Decimal Values; Problem; Solution; How It Works; 3-3. Comparing int Values; Problem; Solution #1; Solution #2; How It Works; 3-4. Comparing Floating-Point Numbers; Problem; Solution #1; Solution #2; How It Works

    3-5. Performing Calculations with Complex NumbersProblem; Solution; How It Works; 3-6. Formatting and Parsing Complex Numbers; Problem; Solution; How It Works; 3-7. Calculating Monetary Values; Problem; Solution; How It Works; 3-8. Randomly Generating Values; Problem; Solution #1; Solution #2; How It Works; 3-9. Obtaining the Current Date; Problem; Solution #1; Solution #2; How It Works; 3-10. Adding and Subtracting Days, Months, and Years; Problem; Solution; How It Works; 3-11. Finding the Difference Between Two Dates; Problem; Solution; How It Works; 3-12. Formatting Dates for Display

    Problem

  11. Java EE 7 Recipes
    A Problem-Solution Approach
    Autor*in: Juneau, Josh
    Erschienen: 2013
    Verlag:  Apress, Berkeley, CA

    Java EE 7 Recipes takes an example-based approach in showing how to program Enterprise Java applications in many different scenarios. Be it a small-business web application, or an enterprise database application, Java EE 7 Recipes provides effective... mehr

    Helmut-Schmidt-Universität, Universität der Bundeswehr Hamburg, Universitätsbibliothek
    keine Fernleihe
    Staats- und Universitätsbibliothek Hamburg Carl von Ossietzky
    keine Fernleihe
    Technische Universität Hamburg, Universitätsbibliothek
    keine Fernleihe
    Otto-von-Guericke-Universität, Universitätsbibliothek
    eBook Springer
    keine Fernleihe
    Otto-von-Guericke-Universität, Universitätsbibliothek, Medizinische Zentralbibliothek
    eBook Springer
    keine Fernleihe
    Hochschulbibliothek Friedensau
    Online-Ressource
    keine Fernleihe

     

    Java EE 7 Recipes takes an example-based approach in showing how to program Enterprise Java applications in many different scenarios. Be it a small-business web application, or an enterprise database application, Java EE 7 Recipes provides effective and proven solutions to accomplish just about any task that you may encounter. You can feel confident using the reliable solutions that are demonstrated in this book in your personal or corporate environment. The solutions in Java EE 7 Recipes are built using the most current Java Enterprise specifications, including EJB 3.2, JSF 2.2, Expression La

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430244264
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Schlagworte: Computer science
    Umfang: XLVI, 699 p
    Bemerkung(en):

    Description based upon print version of record

    Cover; Title Page; Copyright Page; Dedication Page; Contents at a Glance; Table of Contents; About the Author; About the Technical Reviewers; Acknowledgments; Introduction; Who This Book Is For; How This Book Is Structured; Conventions; Downloading the Code; Configuring a Database for the Book Sources; Setting Up a NetBeans Project; CHAPTER 1 Introduction to Servlets; 1-1. Setting Up a Java Enterprise Environment; Problem; Solution; How It Works; 1-2. Developing a Servlet; Problem; Solution; How It Works; 1-3. Packaging, Compiling, and Deploying a Servlet; Problem; Solution; How It Works

    1-4. Registering Servlets Without WEB-XMLProblem; Solution; How It Works; 1-5. Displaying Dynamic Content with a Servlet; Problem; Solution; How It Works; 1-6. Handling Requests and Responses; Problem; Solution; How It Works; 1-7. Listening for Servlet Container Events; Problem; Solution; How It Works; 1-8. Setting Initialization Parameters; Problem; Solution #1; Solution #2; How It Works; 1-9. Filtering Web Requests; Problem; Solution; How It Works; 1-10. Listening for Attribute Changes; Problem; Solution; How It Works; 1-11. Applying a Listener to a Session; Problem; Solution; How It Works

    1-12. Managing Session AttributesProblem; Solution; How It Works; 1-13. Downloading a File; Problem; Solution; How It Works; 1-14. Dispatching Requests; Problem; Solution; How It Works; 1-15. Redirecting to a Different Site; Problem; Solution; How It Works; 1-16. Securely Maintaining State Within the Browser; Problem; Solution; How It Works; 1-17. Finalizing Servlet Tasks; Problem; Solution; How It Works; 1-18. Reading and Writing with Nonblocking I/O; Problem; Solution; How It Works; CHAPTER 2 JavaServer Pages; 2-1. Creating a Simple JSP Page; Problem; Solution; How It Works

    2-2. Embedding Java into a JSP PageProblem; Solution; How It Works; 2-3. Separating Business Logic from View Code; Problem; Solution; How It Works; 2-4. Yielding or Setting Values; Problem; Solution; How It Works; 2-5. Invoking a Function in a Conditional Expression; Problem; Solution; How It Works; 2-6. Creating a JSP Document; Problem; Solution; How It Works; 2-7. Embedding Expressions in EL; Problem; Solution; How It Works; 2-8. Accessing Parameters in Multiple Pages; Problem; Solution; How It Works; 2-9. Creating a Custom JSP Tag; Problem; Solution; How It Works

    2-10. Including Other JSPs into a PageProblem; Solution; How It Works; 2-11. Creating an Input Form for a Database Record; Problem; Solution; How It Works; 2-12. Looping Through Database Records Within a Page; Problem; Solution; How It Works; 2-13. Handling JSP Errors; Problem; Solution; How It Works; 2-14. Disabling Scriptlets in Pages; Problem; Solution; How It Works; 2-15. Ignoring EL in Pages; Problem; Solution #1; Solution #2; Solution #3; How It Works; CHAPTER 3 The Basics of JavaServer Faces; 3-1. Writing a Simple JSF Application; Problem; Solution #1

    Displaying a JSF Managed Bean Field Value

  12. Introducing Java EE 7
    A Look at What’s New
    Autor*in: Juneau, Josh
    Erschienen: 2013
    Verlag:  Apress, Berkeley, CA

    Introducing Java EE 7: A Look at What s New guides you through the new features and enhancements in each of the technologies comprising the Java EE platform. Readers of this book will not have to wade through introductory material or information... mehr

    Helmut-Schmidt-Universität, Universität der Bundeswehr Hamburg, Universitätsbibliothek
    keine Fernleihe
    Staats- und Universitätsbibliothek Hamburg Carl von Ossietzky
    keine Fernleihe
    Technische Universität Hamburg, Universitätsbibliothek
    keine Fernleihe
    Otto-von-Guericke-Universität, Universitätsbibliothek
    eBook Springer
    keine Fernleihe
    Otto-von-Guericke-Universität, Universitätsbibliothek, Medizinische Zentralbibliothek
    eBook Springer
    keine Fernleihe

     

    Introducing Java EE 7: A Look at What s New guides you through the new features and enhancements in each of the technologies comprising the Java EE platform. Readers of this book will not have to wade through introductory material or information covering features that have been part of the EE platform for years. Instead, developers can pick this book up and read it to brush up on those features that have changed or have been added for the EE 7 release. This handy reference helps you move forward from Java EE 6 to the new EE 7 platform quickly and easily. Java is a mature programming language that has been refined over the years into a productive language widely used in enterprise application development. Although the language contains frameworks and methodologies that have been used for years, it is important to make use of the most current features available in the language in order to achieve the best results. Introducing Java EE 7: A Look at What s New covers the solutions using the most current Java Enterprise technologies, including EJB 3.2, JSF 2.2, and JAX-RS 2.0. Build a streamlined and reliable application that uses the latest in Java technologies, and develop it much faster than you did with the older technologies. Rejuvenate your Java expertise to use the freshest capabilities, or perhaps learn Java Enterprise development for the first time and discover one of the most widely used and most powerful technologies available for application development today. Get up and running quickly with the new features of EE 7! Designed to get you up and running quickly with the newly released Java EE 7 Includes real world examples of how to use new and updated features. Demonstrates the latest productivity enhancements in the platform Introducing Java EE 7:  A Look at What’s New guides you through the new features and enhancements in each of the technologies comprising the Java EE platform.  Readers of this book will not have to wade through introductory material or information covering features that have been part of the EE platform for years.  Instead, developers can pick this book up and read it to brush up on those features that have changed or have been added for the EE 7 release.  This handy reference helps you move forward from Java EE 6 to the new EE 7 platform quickly and easily. Java is a mature programming language that has been refined over the years into a productive language widely used in enterprise application development.  Although the language contains frameworks and methodologies that have been used for years, it is important to make use of the most current features available in the language in order to achieve the best results.  Introducing Java EE 7:  A Look at What’s New covers the solutions using the most current Java Enterprise technologies, including EJB 3.2, JSF 2.2, and JAX-RS 2.0.  Build a streamlined and reliable application that uses the latest in Java technologies, and develop it much faster than you did with the older technologies.  Rejuvenate your Java expertise to use the freshest capabilities, or perhaps learn Java Enterprise development for the first time and discover one of the most widely used and most powerful technologies available for application development today.  Get up and running quickly with the new features of EE 7! Designed to get you up and running quickly with the newly released Java EE 7 Includes real world examples of how to use new and updated features. Demonstrates the latest productivity enhancements in the platform

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Volltext (Lizenzpflichtig)
    Volltext (Connect to this resource online)
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430258490
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Schriftenreihe: The expert's voice in Java
    Schlagworte: Computer science
    Umfang: Online-Ressource (XVII, 210 p. 44 illus), online resource
    Bemerkung(en):

    Includes index

    New Servlet Features -- JavaServer Faces and Facelets -- Expression Language (EL) -- Object Relational Mapping and JPA -- Business Logic Using EJB -- Validating Data -- Contexts and Dependency Injection -- Building RESTful Web Services -- WebSockets and JSON-P -- Java Message Service -- Concurrency and Batch Applications -- NetBeans and Java EE 7.

    Electronic reproduction; Available via World Wide Web

  13. Java 7 Recipes
    a problem-solution approach ; [Apply proven solutions to speed up your Java 7 development]
    Autor*in: Juneau, Josh
    Erschienen: 2012
    Verlag:  Apress, New York, NY

    Universitätsbibliothek Bamberg
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule München, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Buch (Monographie)
    ISBN: 9781430240563; 9781430240570
    RVK Klassifikation: ST 250
    Schriftenreihe: The expert's voice in Java
    Schlagworte: Java (Computer program language); Application software / Development; Java Standard Edition 7
    Umfang: XXII, 848 S.
  14. Java 8 recipes
    Autor*in: Juneau, Josh
    Erschienen: 2014
    Verlag:  Apress, Berkeley, CA ; Imprint: Apress

    Hochschule Kempten, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule München, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Universität München, Universitätsbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Hochschule Nürnberg Georg Simon Ohm, Bibliothek
    keine Ausleihe von Bänden, nur Papierkopien werden versandt
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Abteilungsbibliothek Schweinfurt
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Bibliotheksleitung und Zentralbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Volltext (URL des Erstveröffentlichers)
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430268260
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Second edition
    Schlagworte: Java Standard Edition 8
    Umfang: XLIV, 800 Seiten, Illustrationen
  15. Java 9 recipes
    a problem-solution approach
    Autor*in: Juneau, Josh
    Erschienen: [2017]; © 2017
    Verlag:  Apress, [New York, NY]

    Ostbayerische Technische Hochschule Amberg-Weiden, Hochschulbibliothek Amberg
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule Augsburg, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Bamberg
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Bayreuth
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Eichstätt-Ingolstadt
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Erlangen-Nürnberg, Hauptbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschulbibliothek Ingolstadt
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule Kempten, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule Landshut, Hochschule für Angewandte Wissenschaften, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule München, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Universität München, Universitätsbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universität der Bundeswehr München, Universitätsbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Hochschule Nürnberg Georg Simon Ohm, Bibliothek
    keine Ausleihe von Bänden, nur Papierkopien werden versandt
    OTH- Ostbayerische Technische Hochschule Regensburg, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Hochschulbibliothek Rosenheim
    keine Ausleihe von Bänden, nur Papierkopien werden versandt
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Abteilungsbibliothek Schweinfurt
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Bibliotheksleitung und Zentralbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Würzburg
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Volltext (URL des Erstveröffentlichers)
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781484219768
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Third edition
    Schlagworte: Computer science; Computer programming; Programming languages (Electronic computers); Computer Science; Java; Programming Languages, Compilers, Interpreters; Programming Techniques; Informatik; Java Standard Edition 9
    Umfang: 1 Online-Ressource (xlix, 626 Seiten), Illustrationen
  16. Java 7 recipes
    a problem-solution approach ; [apply proven solutions to speed up your Java 7 development]
    Autor*in:
    Erschienen: 2012
    Verlag:  Apress, Berkeley, CA

    Universitätsbibliothek Bayreuth
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule München, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Neu-Ulm, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Hochschule Nürnberg Georg Simon Ohm, Bibliothek
    keine Ausleihe von Bänden, nur Papierkopien werden versandt
    OTH- Ostbayerische Technische Hochschule Regensburg, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Regensburg
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Abteilungsbibliothek Schweinfurt
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Bibliotheksleitung und Zentralbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Beteiligt: Juneau, Josh (Sonstige)
    Sprache: Englisch
    Medientyp: Buch (Monographie)
    Format: Online
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Schriftenreihe: Springer eBook Collection / Professional and Applied Computing
    Schlagworte: Java Standard Edition 7
    Umfang: 1 Online-Ressource
  17. Introducing Java EE 7
    A Look at What's New
    Autor*in: Juneau, Josh
    Erschienen: 2013
    Verlag:  Apress, Berkeley, CA ; s.l. ; Imprint: Apress

    Hochschule München, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Neu-Ulm, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Hochschule Nürnberg Georg Simon Ohm, Bibliothek
    keine Ausleihe von Bänden, nur Papierkopien werden versandt
    OTH- Ostbayerische Technische Hochschule Regensburg, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Abteilungsbibliothek Schweinfurt
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Bibliotheksleitung und Zentralbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Buch (Monographie)
    Format: Online
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Schriftenreihe: Springer eBook Collection / Professional and Applied Computing
    Schlagworte: Java EE 7
    Umfang: online resource
  18. Java EE 7 Recipes
    A Problem-Solution Approach
    Autor*in: Juneau, Josh
    Erschienen: 2013
    Verlag:  Apress, Berkeley, CA

    Hochschule München, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Neu-Ulm, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Hochschule Nürnberg Georg Simon Ohm, Bibliothek
    keine Ausleihe von Bänden, nur Papierkopien werden versandt
    OTH- Ostbayerische Technische Hochschule Regensburg, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Abteilungsbibliothek Schweinfurt
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Bibliotheksleitung und Zentralbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430244264; 9781430244257
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Schlagworte: Java EE 6
    Umfang: 1 Online-Ressource (XLVI, 699 p.)
  19. Java 8 Recipes
    Autor*in: Juneau, Josh
    Erschienen: 2014
    Verlag:  Apress, Berkeley, CA

    Hochschule für Technik und Wirtschaft Dresden, Bibliothek
    eBook Springer
    keine Fernleihe
    Hochschule Furtwangen University. Informatik, Technik, Wirtschaft, Medien. Campus Furtwangen, Bibliothek
    eBook Springer
    keine Fernleihe
    Bibliothek LIV HN Sontheim
    Springer E-Book
    keine Fernleihe
    Duale Hochschule Baden-Württemberg Stuttgart, Campus Horb, Bibliothek
    eBook Springer
    keine Fernleihe
    Karlsruher Institut für Technologie, KIT-Bibliothek
    keine Fernleihe
    Karlsruher Institut für Technologie, KIT-Bibliothek
    keine Fernleihe
    Bibliotheksservice-Zentrum Baden-Württemberg (BSZ)
    keine Fernleihe
    HTWG Hochschule Konstanz Technik, Wirtschaft und Gestaltung, Bibliothek
    eBook Springer
    keine Fernleihe
    Duale Hochschule Baden-Württemberg Lörrach, Zentralbibliothek
    eBook Springer
    keine Fernleihe
    Duale Hochschule Baden-Württemberg Lörrach, Zweigbibliothek
    eBook Springer
    keine Fernleihe
    Duale Hochschule Baden-Württemberg Mannheim, Bibliothek
    eBook Springer
    keine Fernleihe
    Hochschule Mannheim, Hochschulbibliothek
    eBook Springer
    keine Fernleihe
    Universitätsbibliothek Mannheim
    keine Fernleihe
    Universitätsbibliothek Mannheim
    keine Fernleihe
    Hochschule Offenburg, University of Applied Sciences, Bibliothek Campus Offenburg
    E-Book Springer
    keine Ausleihe von Bänden, nur Papierkopien werden versandt
    Duale Hochschule Baden-Württemberg Ravensburg, Bibliothek
    E-Book Springer
    keine Fernleihe
    Duale Hochschule Baden-Württemberg Stuttgart, Bibliothek
    eBook Springer
    keine Fernleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430268260
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Second Edition
    Schriftenreihe: Array
    Schlagworte: Computer science; Computer Science
    Umfang: Online-Ressource (XLIV, 800 p. 66 illus, online resource)