在Blackberry中实现HTTPConnection的正确方法是什么

时间:2011-05-04 10:48:37

标签: blackberry httpconnection

我厌倦了将我的应用程序与远程服务器连接并将少量凭据传递给它,但我总是从服务器获得相同的响应。我尝试更改我传递的所有参数值和其他请求标头值,但仍然无法达到确切的解决方案。我需要你,我是否使用正确的方式ping服务器并传递值。

以下是我正在使用的代码,如果我在某处出错,请告诉我。

// HttpServiceConnection.java

import java.io.InputStream;
import java.io.OutputStream;
import java.nio.ByteBuffer;

import javax.microedition.io.Connector;
import javax.microedition.io.HttpConnection;
import javax.microedition.io.HttpsConnection;

import net.rim.device.api.system.DeviceInfo;

import com.beacon.bb.app.util.WSMConfig;

/**
* @author N********
* 
*/
public class HttpServiceCommunication {

public HttpServiceCommunication() {
    System.out.println("Http Service Communication Called");
}

public String sendHttpPost(String uri, String email, String uid,
        String pass) throws Exception { // Hashtable header
    String response = null;
    // create the connection...
    System.out.println("Url    " + uri);
    HttpConnection _connection = null;
    String params = null;
    if (DeviceInfo.isSimulator()) {
        params = ";deviceside=false";
    } else {
        params = ";deviceside=true;interface=wifi";
    }

    String URL = uri + params;
    System.out.println("Connecting to Http Connection ");
    try {
    _connection = (HttpConnection) Connector.open(URL);
    } catch(Exception e){
        e.printStackTrace();
    }

    if (_connection != null) {

        _connection.setRequestMethod(HttpConnection.POST);
        System.out.println("After Request Method ");
        _connection.setRequestProperty("User-Agent",
                "Profile/MIDP-2.0 Configuration/CLDC-1.1");
        _connection.setRequestProperty("Content-Language", "en-US");
        _connection.setRequestProperty("Content-type", "application/json");

        // setting header if any
        // if (header != null) {
        // for (Enumeration en = header.keys(); en.hasMoreElements();) {
        // String key = (String) en.nextElement();
        // String value = (String) header.get(key);
        // _connection.setRequestProperty(key, value);

        _connection.setRequestProperty("email", email);
        //_connection.setRequestProperty("method","login");
        _connection.setRequestProperty("uid", uid);
        _connection.setRequestProperty("password", pass);

        //_connection.setRequestProperty("uid", uid);

        // }
        // }
        System.out.println("Open Output Stream  ");
        // System.out.println("Data is     "+data);
        OutputStream _outputStream = _connection.openOutputStream();
        //System.out.println("Writing data  ");
        //_outputStream.write(data);
        // _outputStream.flush(); // Optional, getResponseCode will flush

        // Getting the response code will open the connection, send the
        // request, and read the HTTP response headers.
        // The headers are stored until requested.
        try {
        System.out.println("Response Code :" + _connection.getResponseCode());
        int rc = _connection.getResponseCode();
        System.out.println("Response Code :" + rc);
        System.out.println("Response Code   :" + rc + " if HTTP OK    :"
                + (rc == HttpConnection.HTTP_OK));
        if (rc == HttpConnection.HTTP_FORBIDDEN) {
            System.out.println("FORBIDDEN");
            response = WSMConfig.NOT_AUTH;
        } else if (rc != HttpConnection.HTTP_OK) {
            response = WSMConfig.NOT_OK;
        } else if (rc == HttpConnection.HTTP_OK) {
            InputStream _inputStream = _connection.openInputStream();
            final int MAX_LENGTH = 128;
            byte[] buf = new byte[MAX_LENGTH];
            int total = 0;
            while (total < MAX_LENGTH) {
                int count = _inputStream.read(buf, total, MAX_LENGTH
                        - total);
                if (count < 0) {
                    break;
                }
                total += count;
            }
            response = new String(buf, 0, total);
            //ByteBuffer bb = new ByteBuffer(_inputStream);
            //response = bb.getString();
            System.out.println("Response from Server   :" + response);
            // close everything out
            {
                if (_inputStream != null)
                    try {
                        _inputStream.close();
                    } catch (Exception e) {
                    }
                if (_outputStream != null)
                    try {
                        _outputStream.close();
                    } catch (Exception e) {
                    }
                if (_connection != null)
                    try {
                        _connection.close();
                    } catch (Exception e) {
                    }
            }
        }
     else {
        response = WSMConfig.SERVER_ERROR;
    }
    }catch(Exception e){
        e.printStackTrace();
    }

}
    //System.out.println("Response :" + response);
    return response;

}

}

我收到了{"code":0,"err":"Missing 'method'."}

之类的回复

任何帮助都是值得尊敬的....

由于

1 个答案:

答案 0 :(得分:1)

当您想要将数据传递到服务器时尝试此操作:

//encode your data to send
URLEncodedPostData encoder = new URLEncodedPostData(null, false);
encoder.encode("email", email);
encoder.encode("method", "login");
encoder.encode("uid", uid);
encoder.encode("password", pass);

//Now you open up an output stream to write to the connection
OutputStream os = _connection.openOutputStream();
os.write(encoder.getBytes();
os.flush();

然后继续使用其余的逻辑

相关问题