org.voovan.http.message.packet.RequestProtocol Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voovan-web Show documentation
Show all versions of voovan-web Show documentation
Voovan is a java framwork and it not depends on any third-party framework.
package org.voovan.http.message.packet;
import org.voovan.tools.TString;
import org.voovan.tools.log.Logger;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
/**
* HTTP 请求的协议对象
* @author helyho
*
* Voovan Framework.
* WebSite: https://github.com/helyho/Voovan
* Licence: Apache v2 License
*/
public class RequestProtocol extends Protocol {
/**
* Http 方法
*/
private String method;
/**
* 路径
*/
private String path;
/**
* 请求参数
*/
private String queryString;
/**
* 构造函数
*/
public RequestProtocol(){
super();
this.method = "GET";
this.path = "/";
this.queryString = "";
}
public String getMethod() {
return method;
}
public void setMethod(String method) {
this.method = method;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getQueryString() {
return queryString;
}
public void setQueryString(String queryString) {
this.queryString = queryString;
}
/**
* 清理
*/
public void clear(){
super.clear();
this.method = "GET";
this.path = "/";
this.queryString = "";
}
@Override
public String toString(){
try {
return TString.assembly(this.method, " ", this.path, URLEncoder.encode(queryString,"UTF-8"), " ", this.protocol, "/", this.version, "\r\n");
} catch (UnsupportedEncodingException e) {
Logger.error("queryString Unsuppoert UTF-8",e);
}
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy