ExitCertified Formation Formation de Java Solaris Red Hat IBM Symantec Siebel PeopleSoft
 
ExitCertified Formation Formation de Java Solaris Red Hat IBM Symantec Siebel PeopleSoft
 
start courses and schedules education savings it certification education solutions
recherche de formation
Faites confiance à votre formation en TI   |
Oracle University reconnaît ExitCertified comme Partenaire en formation de l’année en Amérique du Nord.

Java SE 7 Programming

Format: Formation en classe avec formateur
Autres formats:
 
 

The second of two courses that cover the Java Standard Edition 7 (Java SE 7) Platform, this course covers the core Application Programming Interfaces (API) you will use to design object-oriented applications with Java. Learn to create classes that subclass other classes, extend abstract classes, and program with interfaces. Learn how to properly use exceptions, how to use the Collections framework, and develop applications that manipulate files, directories and file systems. This course also covers writing database programs with JDBC, and how to correctly write multi-threaded applications. Use this course to further develop your skills with the Java language and prepare for the Oracle Certified Professional, Java SE 7 Programmer Exam!

Learn To:
  • Create Java technology applications with the latest JDK 7 Technology and the NetBeans Integrated Development Environment (IDE)
  • Enhance object-oriented thinking skills using design patterns and best practices
  • Identify good practices in the use of the language to create robust Java applications
  • Manipulate files, directories and file systems
  • Write database applications using standard SQL queries through JDBC
  • Create high-performance multi-threaded applications

 
Sun Microsystems Certified Training Course   Sun Microsystems Training Savings
 

Compétences acquises

 
  • Perform multiple operations on database tables, including creating, reading, updating and deleting using JDBC technology

  • Process strings using a variety of regular expressions

  • Create high-performing multi-threaded applications that avoid deadlock

  • Localize Java applications

  • Create applications that use the Java Collections framework

  • Implement error-handling techniques using exception handling

 
  • Implement input/output (I/O) functionality to read from and write to data and text files and understand advanced I/O streams

  • Manipulate files, directories and file systems using the JDK7 NIO.2 specification

  • Apply common design patterns and best practices

  • Create Java technology applications that leverage the object-oriented features of the Java language, such as encapsulation, inheritance, and polymorphism

  • Execute a Java technology application from the command line

Qui peut en profiter

 
  • Developer

  • J2EE Developer

 
  • Java Developer

  • Java EE Developer

Préalables

 
  • Understand object-oriented principles

  • Basic understanding of database concepts and SQL syntax

 
  • Have completed the Java SE 7 Fundamentals course, or experience with the Java language - can create, compile and execute programs

  • Experience with at least one programming language

 
Enroll For This Class
Enroll For This Class
Sun Microsystems Training Course Ce cours est donné par des formateurs certifiés Oracle.

ExitCertified est le seul partenaire en formation agréée Sun au Canada et le plus important revendeur Sun en Amérique du Nord.

Il y a une différence....découvrez-la.
Training Class Enrollment Ask A Question About This Training
Code: SL-275-SE7
Format: Formation en classe avec formateur
Durée: 5 Days
Certifié par: Oracle
Frais d’inscription (CAD): 2,995$
Oracle University Awards ExitCertified the North American Partner of the Year Award for 2011
Recherchez des cours semblables
Cours connexes

MVP Virtual Training = Formation en vidéoconférence. Pour en savoir davantage.
Trier l'horaire par: 
Frisco, TX  Jul.9 - Jul.13.2012 course register
Edmonton, ABMap Jul.23 - Jul.27.2012 MVP Virtual Training course register
Vancouver, BCMap Jul.23 - Jul.27.2012 MVP Virtual Training course register
Toronto, ON  Jul.23 - Jul.27.2012 course register
Atlanta, GA  Aug.13 - Aug.17.2012 course register
Ottawa, ONMap Aug.13 - Aug.17.2012 MVP Virtual Training course register
Montreal, QCMap Aug.13 - Aug.17.2012 MVP Virtual Training course register
Tampa, FL  Aug.27 - Aug.31.2012 course register
Toronto, ON  Sep.24 - Sep.28.2012 course register
Ottawa, ON  Sep.24 - Sep.28.2012 course register
Montreal, QC  Sep.24 - Sep.28.2012 course register
Toronto, ON  Oct.22 - Oct.26.2012 course register
Edmonton, AB  Nov.26 - Nov.30.2012 course register
Vancouver, BC  Nov.26 - Nov.30.2012 course register
Toronto, ON  Dec.10 - Dec.14.2012 course register
15 Dates Offered      
   
demander une autre date/un autre emplacement demander de la formation sur place
 

Java SE 7 Programming Contenu détaillé

 
 
Java Platform Overview
  • Introductions
  • Course Schedule
  • Java Overview
  • Java Platforms
  • OpenJDK
  • Licensing
  • Java in Server Environments
  • The Java Community Process
Java Syntax and Class Review
  • Simple Java classes
  • Java fields, constructors and methods
  • Model objects using Java classes
  • Package and import statements
Encapsulation and Polymorphism
  • Encapsulation in Java class design
  • Model business problems with Java classes
  • Immutability
  • Subclassing
  • Overloading methods
  • Variable argument methods
Java Class Design
  • Access modifiers: private, protected and public
  • Method overriding
  • Constructor overloading
  • The instanceof operator
  • Virtual method invocation
  • Polymorphism
  • Casting object references
  • Overriding Object methods
Advanced Class Design
  • Abstract classes and type generalization
  • The static and final modifiers
  • Field modifier best practices
  • The Singleton design pattern
  • Designing abstract classes
  • Nested classes
  • Enumerated types
Inheritance with Java Interfaces
  • Java Interfaces
  • Types of Inheritance
  • Object composition and method delegation
  • Implementing multiple interfaces
  • The DAO design pattern
Generics and Collections
  • Generic classes and type parameters
  • Type inference (diamond)
  • Collections and generics
  • List, set and Map
  • Stack and Deque
 
String processing
  • String manipulation with StringBuilder and StringBuffer
  • Essential String methods
  • Text parsing in Java
  • Input processing with Scanner
  • Text output and formatting
  • Regular expressions with the Pattern and Matcher classes
Exceptions and Assertions
  • Exceptions categories
  • Standard Java Exception classes
  • Creating your own Exception classes
  • Using try-catch and the finally clause
  • Using try-with-resources and the AutoCloseable interface
  • The multi-catch feature
  • Best practices using exceptions
  • Assertions
I/O Fundamentals
  • I/O using Java
  • Reading the console input stream
  • Writing to the console
  • Using I/O Streams
  • Chaining I/O Streams
  • Channel I/O
  • Reading and writing objects using Serialization
File I/O with NIO 2
  • The Path interface
  • The Files class
  • Directory and File operations
  • Managing file system attributes
  • Reading, writing, and creating files
  • Watching for file system changes
Threading
  • Operating system task scheduling
  • Recognizing multithreaded environments
  • Creating multi-threaded solutions
  • Sharing data across threads
  • Synchronization and Deadlock
  • Immutable objects
Concurrency
  • Creating Atomic variables
  • Using Read-Write Locks
  • Thread-safe collections
  • Concurrenct synchronizers (Semaphore, Phaser, and others)
  • Executors and ThreadPools to concurrently schedule tasks
  • Parallelism and the Fork-Join framework
Database Application with JDBC
  • Layout of the JDBC API
  • JDBC divers
  • Queries and results
  • PreparedStatement and CallableStatement
  • Transactions
  • RowSet 1.1 RowSetProvider and RowSetFactory
  • The DAO Pattern and JDBC
Localization
  • Advantages of localization
  • Defining locale
  • Read and set locale using the Locale object
  • Resource bundles
  • Format messages, dates and numbers


  ExitCertified is your Authorized IT Training Partner  
  Lorsque vous suivez un cours certifié chez ExitCertified, vous apprenez directement des concepteurs des produits que vous utilisez. Notre engagement envers la communauté des TI, de même que notre autorisation à offrir des cours certifiés, vous assurent une expérience de formation supérieure. Il y a une différence. Apprenez directement de la source.

Il y a une différence. Apprenez directement de la source.
 
Training Contacts  
   
Canada United States

Formation à Montréal :: 514.876.1666
Formation à Ville de Québec :: 514.876.1666
Formation à Ottawa :: 613.232.3948
Formation à Toronto :: 416.487.3948

Formation à Vancouver :: 604.633.3948
Formation à Victoria :: 1.866.328.3948
Formation à Calgary :: 403.291.2855
Formation à Edmonton :: 780.441.3948
Formation à Regina :: 1.866.328.3948

Formation à Sacramento :: 916.669.3970
Formation à San Francisco :: 415.975.3948
Formation à San Jose :: 408.288.3948
Formation à Las Vegas :: 1.800.803.3948
Formation à Phoenix :: 602.889.9350
À travers le monde - 613.232.3948 Des questions?
Il nous fait plaisir de vous aider. Transmettez-nous ce formulaire par courriel et nous vous répondrons dans les plus brefs délais.
   



(c) 2012 ExitCertified Corp. Tous droits réservés.


ExitCertified est un fournisseur international agréé de formation en technologies. Voici quelques-uns de nos cours les plus souvent consultés :
 
Formation Sun Formation Oracle Formation Symantec Formation IBM Formation Red Hat :: Linux
Formation Java, Cours J2EE, Formation JSP, servlets, EJB, Struts, réseaux, Formation Solaris, Java Composite Application Platform (JCAPS), SeeBeyond, XML, Formation Solaris 10, certification Java, certification Solaris Cours PeopleSoft, 11g, Formation Oracle SQL, Oracle PL/SQL, DBA, Hyperion, Fusion Middleware, 10g, 9i, certification 11g, certification DBA, certification Oracle Formation NetBackup, Cours Veritas, protection contre les virus, sécurité des TI, certification Symantec DB2, OS/400, Formation zSeries, s/390, iSeries, AIX SUSE, Formation RedHat
         
Formation MySQL Formation Apple Formation en gestion de projet    
Base de données MySQL Cours Apple, Formation Leopard Formation du PMI