Package mail

Source Code of mail.ServicioCorreo

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package mail;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import javax.microedition.io.Connector;
import javax.microedition.io.HttpConnection;

/**
*
* @author Alan
*/
public class ServicioCorreo {

    public boolean enviarTweet(String usuario, String mensaje, String destino) throws IOException {
    boolean ret =false;
        HttpConnection httpConn = null;
        String url = "http://192.168.1.199:8080/TwitterMail/SMTP";
        InputStream is = null;
        OutputStream os = null;

        try {
            // Open an HTTP Connection object
            httpConn = (HttpConnection) Connector.open(url);
            // Setup HTTP Request to POST
            httpConn.setRequestMethod(HttpConnection.POST);

            httpConn.setRequestProperty("User-Agent",
                    "Profile/MIDP-1.0 Confirguration/CLDC-1.0");
            httpConn.setRequestProperty("Accept_Language", "en-US");
            //Content-Type is must to pass parameters in POST Request
            httpConn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");

         

            os = httpConn.openOutputStream();

            String params;
            params = "usuario=" + usuario + "&mensaje=" + mensaje + "&destino=" + destino;

            os.write(params.getBytes());

            /**Caution: os.flush() is controversial. It may create unexpected behavior
            on certain mobile devices. Try it out for your mobile device **/
            //os.flush();
            // Read Response from the Server
            StringBuffer sb = new StringBuffer();
            is = httpConn.openDataInputStream();
            int chr;
            while ((chr = is.read()) != -1) {
                sb.append((char) chr);
            }
            ret=sb.toString().indexOf("true")>-1;


        } finally {
            if (is != null) {
                is.close();
            }
            if (os != null) {
                os.close();
            }
            if (httpConn != null) {
                httpConn.close();
            }

        }

        return ret;
    }

  
}
TOP

Related Classes of mail.ServicioCorreo

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.