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

📄 histogram.jsp

📁 功能描述:jsp开发答疑解惑200问题说明
💻 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 + -