1 / 6

DESARROLLO DE SOLUCIONES EMPRESARIALES MOVILES USANDO TECNOLOGIA SUN

DESARROLLO DE SOLUCIONES EMPRESARIALES MOVILES USANDO TECNOLOGIA SUN. APLICACIONES MOVILES CON J2ME CONECTIVIDAD. Ing. Ronald Criollo. CONECTIVIDAD J2ME javax.microedition.io.*. AGENDA.

wardah
Download Presentation

DESARROLLO DE SOLUCIONES EMPRESARIALES MOVILES USANDO TECNOLOGIA SUN

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. DESARROLLO DE SOLUCIONES EMPRESARIALES MOVILES USANDO TECNOLOGIA SUN APLICACIONES MOVILES CON J2ME CONECTIVIDAD Ing. Ronald Criollo

  2. CONECTIVIDAD J2ME • javax.microedition.io.* AGENDA

  3. En la programación con J2ME se puede realizar la conexión a redes, para ello se deberá utilizar el paquete javax.microedition.io.* • Se deberá definir una conexión a través de la clase StreamConnection, abriendo buffers de entrada y salida con las clases InputStream y OutputStream Respectivamente. CONECTIVIDAD CON J2ME

  4. CONECTIVIDAD CON J2ME • Interfaces • CommConnection • Connection • ContentConnection • Datagram • DatagramConnection • Htttp Connection • HttpsConnection • InputConnection • OutputConnection • SecureConnection • SecurityInfo • ServerSocketConnection • Stream Connection • StreamConnectionNotifier • UDPDatagramConnection • Clases • Connector • PushRegistry • Excepciones • ConnectionNotFoundException

  5. Abrir una conexión • Connection c=Connector.open(String nombre); Formato del nombre • {protocolo}:[{objetivo}][{parametros}] • Protocolos soportados • File, comm, socket,datagram,http • Objetivos soportados • Hostname, puerto, archivo • Parametros aceptados • Informacion adicional ESTABLECIMIENTO DE UNA CONEXION http://ronaldcriollo.s215.eatj.com/CalculadoraServlet/servlet?op1="+operando1.getString()+"&op2="+operando2.getString()+"&operacion="+operacion

  6. Connection open(String nombre) • Abre una connexion DataInputStream openDataInputStream() • Abre un flujo de datos de entrada DataOutputStream openDataOutputStream() • Abre un flujo de datos de salida InputStream openInputStream() • Abre un flujo de entrada OutputStream openOutputStream() • Abre un flujo de salida METODOS DE UNA CLASE CONNECTOR

More Related