📄 ihttpresponse.java
字号:
package com.bbn.openmap.layer.util.http;
import java.io.IOException;
/**
*/
public interface IHttpResponse {
/**
* Write a String response to the OutputStream.
*
* @param out the OutputStream of the response.
* @param contentType the content type of the response.
* @param response the string containing the response.
*/
public void writeHttpResponse(String contentType,String response) throws IOException;
/**
* Write a byte[] response to the OutputStream.
*
* @param out the OutputStream of the response.
* @param contentType the content type of the response.
* @param response the byte array containing the response.
*/
public void writeHttpResponse(String contentType, byte[] response) throws IOException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -