📄 showcertpic.java
字号:
package control;
import java.io.IOException;
import javax.servlet.http.*;
import javax.servlet.*;
public class ShowCertPic extends AddNewCategory
{
//public static HttpSession session;
public void service(HttpServletRequest req,HttpServletResponse res)throws ServletException,IOException
{
CreateImage image = new CreateImage();
String str = image.getImage(0, 0, res.getOutputStream());
HttpSession session = req.getSession();
session.setAttribute("rand", str);
//tiaoZhuan(req,res,"/Denglu.jsp");
//System.out.println("8888888"+str);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -