📄 robotresponse.java
字号:
package com.msnrobotweb.http;import org.simpleframework.http.Response;/** * 机器人请求的包装类 * @author bm888888@gmail.com * */public class RobotResponse { Response response; public RobotResponse(Response response) { this.response = response; } /** * @return the request */ public Response getresponse() { return response; } public void print(String string) throws Exception { response.getPrintStream().print(string); } public void println(String string) throws Exception { response.getPrintStream().println(string); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -