1

Androidでチャットボットアプリを作ってみました。Pandorabots をチャットボット サーバーとして使用しています。デバイス Android とサーバーを接続します。pandorabot XML-RPC API を使用し、android-xmlrpc のxml-rpc ライブラリを使用します。これは私のコードです:

public class MainActivity extends Activity {
private EditText editOne;
private TextView textOne;
private Button ButtonOne;
private XMLRPCClient server;
private URI uri;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    if (android.os.Build.VERSION.SDK_INT > 9) {
        StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
        StrictMode.setThreadPolicy(policy);
    }

    uri = URI.create("http://www.pandorabots.com/pandora/talk-xml?botid=e80e92407e341007");
    server = new XMLRPCClient(uri);
    editOne = (EditText) findViewById(R.id.editText1);
    textOne = (TextView) findViewById(R.id.textView1);
    ButtonOne = (Button) findViewById(R.id.button1);

    textSatu.setText(getDataMethod("hi"));
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}


private String getDataMethod(String num) {
    String text = "";
    try {
        Log.w("Running server.call", "prosess");
        Object[] data = (Object[]) server.call("input", num);
        Log.w("server.call Run", "finish");
        Log.w("Run HashMap", "prosess");
        for(Object o: data) {
            HashMap map = (HashMap) o;
            Log.w("HashMap Berjalan", "Error");
            text = text + "'that' => " + map.get("that") + "\n\n";
        }
    } catch (XMLRPCException e) {
        Log.w("XMLRPC Test", "Error", e);
        text = "XMLRPC error";
    }       
    return text;
}


 }

しかし、私はエラーが発生しました。:org.xmlpull.v1.XmlPullParserException: expected: START_TAG {null}methodResponse (position:START_TAG @1:45 in java.io.InputStreamReader@41174280) と言います。

誰でも私を助けることができますか?お願いします。

4

1 に答える 1