?? 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); } }
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -