org.json.other.client.AdaHttpJsonRpcClientTransport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonrpc Show documentation
Show all versions of jsonrpc Show documentation
jsonrpc is a lightweight Rpc Framework
/*
* Copyright (C) 2011 ritwik.net
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.json.other.client;
import java.io.BufferedInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
import java.util.HashMap;
import java.util.Map;
import java.util.zip.GZIPInputStream;
import com.openyelp.client.JsonRpcClientTransport;
import com.openyelp.commons.JsonRpcClientException;
public class AdaHttpJsonRpcClientTransport implements JsonRpcClientTransport {
private URL url;
private final Map headers;
public AdaHttpJsonRpcClientTransport(URL url) {
this.url = url;
this.headers = new HashMap();
}
public final void setHeader(String key, String value) {
this.headers.put(key, value);
}
public final String call(String requestData) throws Exception {
String responseData = post(url, headers, requestData);
return responseData;
}
private String post(URL url, Map headers, String data)
throws IOException {
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
if (headers != null) {
for (Map.Entry entry : headers.entrySet()) {
connection.addRequestProperty(entry.getKey(), entry.getValue());
}
}
connection.addRequestProperty("Accept-Encoding", "gzip");
connection.setConnectTimeout(3000);
connection.setRequestMethod("POST");
connection.setReadTimeout(4500);
connection.setDoOutput(true);
connection.connect();
/**
* 向服务器写数据
*/
OutputStream out = null;
try {
out = connection.getOutputStream();
out.write(data.getBytes("UTF-8"));
out.flush();
out.close();
int statusCode = connection.getResponseCode();
if (statusCode != HttpURLConnection.HTTP_OK) {
// throw new JsonRpcClientException(
// "unexpected status code returned : " + statusCode);
return null;
}
} catch (Exception e) {
return null;
} finally {
if (out != null) {
out.close();
}
}
String responseEncoding = connection.getHeaderField("Content-Encoding");
responseEncoding = (responseEncoding == null ? "" : responseEncoding
.trim());
String body = "";
InputStream in = connection.getInputStream();
try {
in = connection.getInputStream();
if ("gzip".equalsIgnoreCase(responseEncoding)) {
in = new GZIPInputStream(in);
}
in = new BufferedInputStream(in);
ByteBuffer byteData = readToByteBuffer(in);
body = Charset.forName("UTF-8").decode(byteData).toString();
} catch (Exception e) {
return null;
} finally {
if (in != null) {
in.close();
}
}
return body;
}
public static ByteBuffer readToByteBuffer(InputStream inStream)
throws IOException {
byte[] buffer = new byte[bufferSize];
ByteArrayOutputStream outStream = new ByteArrayOutputStream(bufferSize);
int read;
while (true) {
read = inStream.read(buffer);
if (read == -1)
break;
outStream.write(buffer, 0, read);
}
ByteBuffer byteData = ByteBuffer.wrap(outStream.toByteArray());
return byteData;
}
private static final int bufferSize = 0x20000; // ~130K.
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy