好了,所以我有这段代码,当我发出请求时,我想包含一些HTTP header 信息。我将如何去做?
public boolean call(String apiCall) {
if (this.apiCalls.containsKey(apiCall)) {
try{
URL url = this.apiCalls.get(apiCall);
url = new URL(url.toString() + "?memberid=76710");
URLConnection urlConn = url.openConnection();
InputStream is = urlConn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
ByteArrayBuffer baf = new ByteArrayBuffer(50);
int current = 0;
while((current = bis.read()) != -1){
baf.append((byte)current);
}
this.responseResultText = new String(baf.toByteArray());
return true;
} catch(Exception e){
this.responseResultText = e.getMessage();
return false;
}
}
this.responseResultText = "API call " + apiCall + " doesn't exist.";
return false;
}
谢谢!
最佳答案
使用 URLConnection#setRequestProperty()
。
connection.setRequestProperty("Content-Type", "text/plain");
也可以看看:
URLConnection
?