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

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...

Links acerca de usabilidad

Bueno esta haciendo un research acerca de usabilidad y decidi compartir algunos de los links mas interesantes: Este esta muy cool y dice por que son buenos, gmail #1: http://www.1stwebdesigner.com/design/well-designed-usable-sites/ Los mejores menus: http://www.kronikmedia.co.uk/blog/website-navigation-menu-design/3580/ Otro top ten: http://www.topsite.com/best/usability los CMS con mas usabilidad http://net.tutsplus.com/articles/web-roundups/top-10-most-usable-content-management-systems/ Las grandes companias que incorporan usabilidad en sus sistemas: http://www.siteiq.net/7806/the-2013-usability-top-10-ibm-leads-sap-soars-and-apple-screws-up-the-rankings-2 + Algo interesante: top ten de sitios de Universidades http://blog.thebrickfactory.com/2010/03/top-11-best-designed-university-websites/ Y estos son 10 videitos acerca de usabilidad: http://www.usefulusability.com/10-must-see-usability-videos/ Enjoy!

Wikipedia data base schema

Algo interesante como caso de estudio, especialmente para los que estén cursando bases de datos, el esquema de la Wikipedia esta disponible para hechar un ojo. A simple vista, me gusta mucho la simplicidad y lo bien documentada que se encuentra, vale la pena dedicarle un tiempo. http://www.wikipedia.org/