📄 testenv.java
字号:
/*
* Created on 2004-7-26
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package com.gctech.misc.provision;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* @author liyi
* Email:ly@gctech.com.cn
* 2004-7-26
* 吉芙德咨询有限公司
*/
public class TestEnv extends HttpServlet {
public void doGet(HttpServletRequest rq, HttpServletResponse rp) throws ServletException, IOException {
// System.out.println("-----------------------------------------------------------");
}
//Process the HTTP Post request
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doGet(request, response);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -