📄 urlrewritetestcase.java
字号:
return new String[0];
}
public Map getParameterMap() {
return null;
}
public String getProtocol() {
return protocol;
}
public String getScheme() {
return scheme;
}
public String getServerName() {
return serverName;
}
public int getServerPort() {
return serverPort;
}
public BufferedReader getReader() throws IOException {
return null;
}
public String getRemoteAddr() {
return remoteAddr;
}
public String getRemoteHost() {
return remoteHost;
}
public void setAttribute(String s, Object o) {
attrs.put(s, o);
}
public void removeAttribute(String s) {
attrs.remove(s);
}
public Locale getLocale() {
return null;
}
public Enumeration getLocales() {
return null;
}
public boolean isSecure() {
return false;
}
public RequestDispatcher getRequestDispatcher(String s) {
return null;
}
/**
* @deprecated
*/
public String getRealPath(String s) {
return null;
}
public int getRemotePort() {
return 0;
}
public String getLocalName() {
return null;
}
public String getLocalAddr() {
return null;
}
public int getLocalPort() {
return localPort;
}
public void setServerPort(int i) {
serverPort = i;
}
public void setQueryString(String s) {
queryString = s;
}
public void setMethod(String s) {
method = s;
}
public void setHeader(String name, String value) {
headers.put(name, value);
}
public void setContentLength(int i) {
contentLength = i;
}
public void setContentType(String s) {
contentType = s;
}
public void setContextPath(String s) {
contextPath = s;
}
public void addCookie(Cookie c) {
if (cookies == null) cookies = new Cookie[100];
cookies[cookieCounter++] = c;
}
public void addParameter(String s, String s1) {
parameters.put(s, s1);
}
public void setPathInfo(String s) {
pathInfo = s;
}
public void setPathTranslated(String s) {
pathTranslated = s;
}
public void setProtocol(String s) {
protocol = s;
}
public void setRemoteAddr(String s) {
remoteAddr = s;
}
public void setRemoteHost(String s) {
remoteHost = s;
}
public void setRemoteUser(String s) {
remoteUser = s;
}
public void setRequestedSessionId(String s) {
requestedSessionId = s;
}
public void setRequestURL(String s) {
requestUrl = s;
}
public void setServerName(String s) {
serverName = s;
}
public void setScheme(String s) {
scheme = s;
}
public void addHeader(String s, String s1) {
headers.put(s, s1);
}
public void setLocalPort(int localPort) {
this.localPort = localPort;
}
}
class MockResponse implements HttpServletResponse {
private Hashtable responseHeaders = new Hashtable();
private int status = 200;
private String redirectedUrl;
private List cookies = new ArrayList();
private Locale locale;
public void addCookie(Cookie cookie) {
cookies.add(cookie);
}
public boolean containsHeader(String s) {
return false;
}
public String encodeURL(String s) {
if (s == null) return null;
if (s.indexOf("http:") == 0) return s;
if (s.contains("?")) {
return s.substring(0, s.indexOf("?")) + ";mockencoded=test" + s.substring(s.indexOf("?"), s.length());
} else {
return s.concat(";mockencoded=test");
}
}
public String encodeRedirectURL(String s) {
return encodeURL(s);
}
/**
* @deprecated
*/
public String encodeUrl(String s) {
return encodeURL(s);
}
/**
* @deprecated
*/
public String encodeRedirectUrl(String s) {
return encodeURL(s);
}
public void sendError(int i, String s) throws IOException {
}
public void sendError(int i) throws IOException {
}
public void sendRedirect(String s) throws IOException {
redirectedUrl = s;
}
public void setDateHeader(String s, long l) {
responseHeaders.put(s, l + "");
}
public void addDateHeader(String s, long l) {
responseHeaders.put(s, l + "");
}
public void setHeader(String s, String s1) {
responseHeaders.put(s, s1);
}
public void addHeader(String s, String s1) {
responseHeaders.put(s, s1);
}
public void setIntHeader(String s, int i) {
responseHeaders.put(s, i + "");
}
public void addIntHeader(String s, int i) {
responseHeaders.put(s, i + "");
}
public void setStatus(int i) {
status = i;
}
/**
* @deprecated
*/
public void setStatus(int i, String s) {
}
public String getCharacterEncoding() {
return null;
}
public String getContentType() {
return null;
}
public ServletOutputStream getOutputStream() throws IOException {
return null;
}
public PrintWriter getWriter() throws IOException {
return null;
}
public void setCharacterEncoding(String s) {
}
public void setContentLength(int i) {
}
public void setContentType(String s) {
}
public void setBufferSize(int i) {
}
public int getBufferSize() {
return 0;
}
public void flushBuffer() throws IOException {
}
public void resetBuffer() {
}
public boolean isCommitted() {
return false;
}
public void reset() {
}
public void setLocale(Locale l) {
locale = l;
}
public Locale getLocale() {
return locale;
}
public String getHeader(String s) {
return (String) responseHeaders.get(s);
}
public int getStatus() {
return status;
}
public String getRedirectedUrl() {
return redirectedUrl;
}
public List getCookies() {
return cookies;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -