Ir al contenido principal

Temario Curso de Java

Como les comente hace algunos días, inicié un curso de Java básico en la compañia avVenta.
A continuación les dejo los temarios y como se habrán dado cuenta, intentaré ir colgando en el blog, información (un pequeño resumen) de los temarios del curso.

Java Basic for 5.0 version.

Java Basic #1

11 hours


  • Brief Introduction of Java. (1 hour)

  • Installation and tools (Overview of Eclipse IDE) (1 hour)

  • Type data (1/2 hour)

    • Primitive Types.

    • Custom types.

    • Var names.

    • Constants.

  • Brief introduction to standard coding.

    • Operators (1/2 hour)

    • Arithmetic operators.

    • Conditional operators.

  • Flow Control (1 hour)

    • If-else

    • Switch

    • Do… While

    • For (foreach)

  • Arrays and Strings (1 hour)

    • Arrays.

    • Strings.

    • Buffering.

  • Classes in Java (2 hours)

    • Constructors

    • SuperClass.

    • Interfaces.

    • Public, Private, package, abstract, final.

    • Anonymous class.

    • Inner class.

    • Overriding.

    • Pass by value.

    • Pass by reference: We need to be careful here - Java only has by-value parameters. The "by reference" is an illusion - you're actually passing the value of
      the reference as the parameter. This distinction is important because
      it differs greatly from what other languages such as C++ permit.

  • Exception control (1 hours)

    • Concept of exception in Java.

    • Try, catch, finally.

    • Creating Custom Exceptions

    • Hierarchy exceptions and context (Throwable , Runtime and Exception)

  • Classes in JDK

    • Class object. (1/2 hour)

    • Equal method and Comparable interface (1 hour).

    • HashCode method (1/2).

    • Java Lang (1 hour)

      • Integer, Long, Double, Buffering, String, Math.


Java Basic #2

10 hours



  • Classes in JDK


    • Multi-threaded (2 hours).

      • Thread class.

      • Runnable interface.

      • ThreadGroup.

    • Java Util package. (4 hour)

      • Collections and Generics.

      • Logs.

      • Zip, RE.

    • Java Text package. (2 hour)

      • Collators, DateFormat, NumberFormat, MessageFormat.

    • Java IO. (2 hours)

      • File, Writer’s, Reader’s. Input and Output, Tokenizer’s.



Java Basic #3

11 hours


  • Classes in JDK


    • Java Thread Second Part (3 hours)

      • Monitors, synchronization, mutex: It would be wise to discuss both standard synchronization, and
        manual lock-based synchronization.

    • Java NIO (2 hours)

      • Add here the java nio topics.

    • Java Net (2 hours)

      • InetAddress.

      • ServerSocket, Socket.

      • URL, HttpURLConnection, URL, URLConnection, Decoder & Encoder.

    • Java Reflect and Beans. (4 hours)

      • ClassForName.

      • Constructor, Field, Method, BeanInfo, BeanDescriptor, PropertyDescriptor, XMLDecoder, XMLEncoder, Annotations.


Java Basic #4

10 hours


  • Classes in JDK


    • Java Security and Crypto (2 hour)

      • Digest (MD5), Key’s, Provider, Algorithm’s, etc.

    • Java Image (1 hour)

      • How create and manipulate an image.

    • Java SQL (4 hours)

      • JDBC, Connection, Statement, ResultSet.

    • Java XML (3 hours)

      • DOM and SAX. JAXB


Java Basic #5

10 hours


  • Classes in JDK


    • Java Swing and Awt (4 hours)

      • JFrame. JPanel, JInternalFrame.

      • JTextField, JButton, JList, JTree, JTable.

    • Java and Applet’s (3 hours)

    • Review of the Java Sun Coding guidelines. (2 hours)

    • Java and Java Web Start (Overview). (1 hour)

Comentarios

Entradas más populares de este blog

Pasos para remover Postgresql 8.3 en MAC OS

Tomado de: http://forums.enterprisedb.com/posts/list/1437.page In Mac OSX: (Assuming Default Locations) Via uninstaller: 1) In the installation directory, there will be a uninstall-postgresql.app file will be there, executing (double clicking) that will uninstall the postgresql installation. Manual Uninstallation: 1) Stop the server sudo /sbin/SystemStarter stop postgresql-8.3 2) Remove menu shortcuts: sudo rm -rf /Applications/PostgreSQL 8.3 3) Remove the ini file sudo rm -rf /etc/postgres-reg.ini 4) Removing Startup Items sudo rm -rf /Library/StartupItems/postgresql-8.3 5) Remove the data and installed files sudo rm -rf /Library/PostgreSQL/8.3 6) Delete the user postgres sudo dscl . delete /users/postgres

Enrique Bunbury - 3 de Octubre 2009 - Heredia CR

Via periodico la nacion, me entero de este conciertazo: http://www.nacion.com/viva/2009/julio/29/viva2042768.html Ah esperar mas detalles y la venta de la entradas, "Para solo si me perdonas ..." EDIT ..... Via http://www.enriquebunbury.com/hellville.aspx (gracias a andres por su post) venta anticipada: Entradas a la venta a partir del 13 de agosto en: www.costaricaticket.com Por ahi estare anunciando, el 13 si las estan vendiendo!

Impensando acerca de las referencias en Java

Fue hace ya algún tiempo que pase un rato discutiendo con algunos compañeros acerca de si existe o no el paso por referencia; el discurso fue mucho hacia que en Java el comportamiento, en el supuestamente pasamos por referencia un objeto y por valor los objetos primitivos creo mucha polémica. Para ubicarnos en contexto veamos el siguiente ejemplo. public static void main(String[] args) { int value = 10; changeValue(value); System.out.println("value = " + value); User user = new User(); Name name = new Name(); user.setName(name); name.setName("jsanca"); name.setLastName("XXX"); user.setPassword("123queso"); System.out.println("user: " + user.getName().getName() + ", " + user.getName().getLastName() + ", " + user.getPassword()); changeValue1(user); System.out.println("user: " + user.getName().getName() + ", " + user.getName().getLastName() + ", " + user.ge...