サーブレットからデータを取得する Android アプリがあります。ここで、データを作成してサーブレットに送信するクライアントをもう 1 つ作成し、それを Android で取得したいと考えています。これは、サーブレットから Android に関する情報を取得するための私のコードです。
final RestClient client = new RestClient("App Engine name");
client.AddParam("hi", "how are you?");
TextView textView = (TextView)findViewById(R.id.outputTextView);
try
{
client.Execute(RequestMethod.GET);
}
catch (Exception e)
{
textView.setText(e.getMessage());
}
String response = client.getResponse();
textView.setText(response);
もう 1 つのクライアントからサーブレットにデータを投稿し、client.getResponse(); を使用して Android で取得する方法はありますか? ?