欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > 文章正文

java,

来源: javaer 分享于  点击 36094 次 点评:128

java,


package com.Annual.Httpclient;

import java.io.UnsupportedEncodingException;

/**
* 封装HttpClient返回数据
* <p>
*
* @Date 2016-8-11
*/
public class ResponseContent {
private String encoding;

private byte[] contentBytes;

private int statusCode;

private String contentType;

private String contentTypeString;

public String getEncoding() {
return encoding;
}

public void setEncoding(String encoding) {
this.encoding = encoding;
}

public String getContentType() {
return this.contentType;
}

public void setContentType(String contentType) {
this.contentType = contentType;
}

public String getContentTypeString() {
return this.contentTypeString;
}

public void setContentTypeString(String contenttypeString) {
this.contentTypeString = contenttypeString;
}

public String getContent() throws UnsupportedEncodingException {
return this.getContent(this.encoding);
}

public String getContent(String encoding) throws UnsupportedEncodingException {
if (encoding == null) {
return new String(contentBytes);
}
return new String(contentBytes, encoding);
}

public String getUTFContent() throws UnsupportedEncodingException {
return this.getContent("UTF-8");
}

public byte[] getContentBytes() {
return contentBytes;
}

public void setContentBytes(byte[] contentBytes) {
this.contentBytes = contentBytes;
}

public int getStatusCode() {
return statusCode;
}

public void setStatusCode(int statusCode) {
this.statusCode = statusCode;
}

}

相关文章

    暂无相关文章
相关栏目:

用户点评