3

Android アプリケーションで Jersey Client を使用したいと考えています。これは私のクライアントのコードです:

private JSONArray getJsonElements(){
    ClientConfig config = new DefaultClientConfig();
    Client client = Client.create(config);
    WebResource service = client.resource(getBaseURI());
    JSONArray jarray = new JSONArray();
     jarray =  service.path("/collection").accept(MediaType.APPLICATION_JSON).get(JSONArray.class);
     Log.v(TAG, jarray.toString());
    return jarray;
}
private static URI getBaseURI() {
    return UriBuilder.fromUri("http://localhost:6577/Example/rest/Example")
            .build();
}

ここで問題が発生します。アプリケーションをビルドしようとすると、次の非常に一般的な例外が発生します。

java.lang.IllegalArgumentException: already added: Ljavax/ws/rs/core/GenericEntity;...2012-07-07 16:48:32 - SM] Conversion to Dalvik format failed with error 1

この例外に関して寄せられたすべての質問を見ました。Jar を BuildPath から削除し、クライアントの選択を変更する (またはクライアントを作成する) ことは可能ですが、私はこれを行いたくありません。あなたは私に何をお勧めしますか?

4

1 に答える 1

2

このリンクを見てください: http://www.vogella.com/articles/AndroidNetworking/article.html

私自身は、POST、PUT、DELETE、GET などの HTTP コマンドをサポートしているため、Jersey を使用して HTTP クライアントを使用して Android アプリケーションを REST サービスに接続することを好みます。たとえば、GET コマンドを使用して JSON 形式でデータを転送するには、次のようにします。

public class Client {

    private String server;

    public Client(String server) {
        this.server = server;
    }

    private String getBase() {
        return server;
    }

    public String getBaseURI(String str) {
        String result = "";
        try {
            HttpParams httpParameters = new BasicHttpParams();
            int timeoutConnection = 3000;
            HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);
            int timeoutSocket = 5000;
            HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
            DefaultHttpClient httpClient = new DefaultHttpClient(httpParameters);
            HttpGet getRequest = new HttpGet(getBase() + str);
            getRequest.addHeader("accept", "application/json");
            HttpResponse response = httpClient.execute(getRequest);
            result = getResult(response).toString();
            httpClient.getConnectionManager().shutdown();
        } catch (Exception e) {
            System.out.println(e.getMessage());
        } 
        return result;
    }



 private StringBuilder getResult(HttpResponse response) throws IllegalStateException, IOException {
            StringBuilder result = new StringBuilder();
            BufferedReader br = new BufferedReader(new InputStreamReader((response.getEntity().getContent())), 1024);
            String output;
            while ((output = br.readLine()) != null) 
                result.append(output);

            return result;      
      }
}

そして、別のクラスで簡単に次のことができます。

Client client = new Client("http://localhost:6577/Example/rest/");
String str = client.getBaseURI("Example");    // Json format
于 2012-07-10T00:36:37.280 に答える