⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 robotresponse.java

📁 MSN机器人源码
💻 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 + -