5

Blackberry は初めてで、xml で検索語をサーバーに投稿しようとしています。しかし、このエラーが発生し続けますRequest Failed. Reason Java.lang.NegativeArraySizeException

データを解析する前に接続が機能するかどうかを確認したかったので、この接続から xml で応答テキストを受け取ることを期待しています。以下はコードです:

public void webPost(String word) {
    word = encode (word);
    String responseText;
    try{
        HttpConnection connection = (HttpConnection)Connector.open("http://some url.xml");
        connection.setRequestMethod(HttpConnection.POST);
        connection.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
        String postData = "username=loginapi&password=myapilogin&term="+ word;
        connection.setRequestProperty("Content-Length",Integer.toString(postData.length()));
        connection.setRequestProperty("User-Agent","Profile/MIDP-2.0 Configuration/CLDC-1.0");
        OutputStream requestOut = connection.openOutputStream();
        requestOut.write(postData.getBytes());

        InputStream detailIn = connection.openInputStream();
        byte info[]=new byte[(int)connection.getLength()];
        detailIn.read(info);
        detailIn.close();
        requestOut.close();
        connection.close();
        responseText=new String(info);
        requestSuceeded(requestOut.toString(), responseText);
    }
    catch(Exception ex){
        requestFailed(ex.toString());
    }
}

private void requestSuceeded(String result, String responseText) {
    if(responseText.startsWith("text/xml")) { 
        String strResult = new String(result); 
        synchronized(UiApplication.getEventLock()) { 
            textOutputField.setText(strResult); 
        } 
    } else{ 
        synchronized(UiApplication.getEventLock()) { 
            Dialog.alert("Unknown content type: " + responseText); 
        } 
    } 
} 

public void requestFailed(final String message) { 
    UiApplication.getUiApplication().invokeLater(new Runnable() { 
        public void run() { 
            Dialog.alert("Request failed. Reason: " + message); 
        } 
    }); 
} 

private String encode(String textIn) {
     //encode text for http post
    textIn = textIn.replace(' ','+');
    String textout = "";
    for(int i=0;i< textIn.length();i++){
        char wcai = textIn.charAt(i);
        if(!Character.isDigit(wcai) && !Character.isLowerCase(wcai) && !Character.isUpperCase(wcai) && wcai!='+'){
            switch(wcai){
                case '.':
                case '-':
                case '*':
                case '_':
                    textout = textout+wcai;
                    break;
                default:
                    textout = textout+"%"+Integer.toHexString(wcai).toUpperCase();//=textout.concat("%").concat(Integer.toHexString(wcai));
            }
        }else{
            textout = textout+wcai;//=textout.concat(wcai+"");
        }
    }
    return textout;
}    
4

6 に答える 6

4

connection.getLength()は-1を返します。

情報配列を作成する前に、接続の長さを確認してください。

int length = (int) connection.getLength();

if(length > 0){
     byte info[]=new byte[length];
     // perform operations

}else{
     System.out.println("Negative array size");
}
于 2012-06-26T13:15:25.490 に答える
2

私はあなたがするときだと思います

byte info[]=new byte[(int)connection.getLength()];

InputStream はその長さを知らないため、-1 を返します。

http://www.velocityreviews.com/forums/t143704-inputstream-length.htmlを参照してください。

于 2012-06-26T13:08:43.300 に答える
2

connection.getLength()ここで配列を初期化しようとすると、-1 が返されると想定しています。

byte info[]=new byte[(int)connection.getLength()];

そしてそれが NegativeArraySizeException の理由です。

于 2012-06-26T13:07:12.240 に答える
1

参照: http://supportforums.blackberry.com/t5/Java-Development/HttpConnection-set-to-POST-does-not-work/mp/344946

Ref1: Blackberry が HTTPPost リクエストを送信する

Ref2: http://www.blackberryforums.com/developer-forum/181071-http-post-passing-parameters-urls.html

このようなもの:

URLEncodedPostData postData = new URLEncodedPostData(URLEncodedPostData.DEFAULT_CHARSET, true); 
postData.append("name",name); 
于 2012-06-26T14:51:38.943 に答える
1

それを見つけた!出力ストリーム接続を開くのを忘れました

requestOut = connection.openOutputStream();

ByteArrayOutpuStream そして、最終的に入力ストリームを表示するのに役立つことを紹介しました。また、パラメーターの送信方法を変更し、URLEncodedPostData代わりに型を使用しました。サーバーが以前のリクエストを POST ではなく GET として解釈していたためです。あとは、入ってくる情報を解析するだけです。

try{
     connection = (HttpConnection)Connector.open("http://someurl.xml",Connector.READ_WRITE);
     URLEncodedPostData postData = new URLEncodedPostData(URLEncodedPostData.DEFAULT_CHARSET, false);
     postData.append("username", "loginapi");
     postData.append("password", "myapilogin");
     postData.append("term", word);

     connection.setRequestMethod(HttpConnection.POST);
     connection.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
     connection.setRequestProperty("User-Agent","Profile/MIDP-2.0 Configuration/CLDC-1.0");
     requestOut = connection.openOutputStream();
     requestOut.write(postData.getBytes());
     String contentType = connection.getHeaderField("Content-type"); 
     detailIn = connection.openInputStream();         
     int length = (int) connection.getLength();
     ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
     if(length > 0){
         byte info[] = new byte[length];
         int bytesRead = detailIn.read(info);
         while(bytesRead > 0) { 
             baos.write(info, 0, bytesRead); 
             bytesRead = detailIn.read(info); 
             }
         baos.close();
         connection.close();
         requestSuceeded(baos.toByteArray(), contentType);

         detailIn.read(info);
     }
     else
     {
          System.out.println("Negative array size");
     }
           requestOut.close();
           detailIn.close();
           connection.close();
    }

PS。同じ問題を抱えている人を助けるために上記のコードを投稿しました。

PPS。Kalai のフォーマットも使用しましたが、非常に役立ちました。

于 2012-06-27T11:46:28.247 に答える