📄 histogram.jsp
字号:
<%@page contentType="image/jpeg" %>
<jsp:useBean id="hist" scope="page" class="myBean.Histogram" />
<%
int width = 0;
try {
width = Integer.parseInt(request.getParameter("percent"));
} catch(Exception e) {
return;
}
int totalWidth = 200;
if(width >totalWidth)
width = totalWidth;
double percent = hist.getHistogram(width, totalWidth, 20, response.getOutputStream());
//session.setAttribute("percent", new Double(percent));
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -