|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
java也能做一些底层语言开发做的事情(难度很高,不是java顶尖高手是做不来的),
一个复杂的用法
在jsp页面中能够封装为一标签
publicclassxxxxChartTagextendsTagSupport
{
privatestaticfinallongserialVersionUID=1L;
privateintwidth;//图表宽度
privateintheight;//图表高度
privateStringtype;//图表范例
privateDataVOdatavo;//图表数据对象
privatestaticfinalintEVAL_PAGE=6;
privateStringattrbuteName;//request对象名字
privateStringchartType;//图表显现体例2D或3D
/**
*
*<p>Discription:[机关器办法形貌]</p>
*@coustructor办法.
*/
publicNtasChartTag()
{
super();
width=790;
height=460;
attrbuteName=NtasConst.REQUEST_DATAVO_KEY;
chartType="2D";
}
publicintdoStartTag()throwsJspException
{
StringBufferstringbuffer=newStringBuffer();
HttpServletRequestrequest=(HttpServletRequest)pageContext.getRequest();
HttpSessionsession=request.getSession(true);
datavo=(DataVO)request.getAttribute(attrbuteName);
NTASChartFactoryNChartFactory=newNTASChartFactory(datavo,session);
NChartFactory.setPicWidth(width);
NChartFactory.setPicHeight(height);
NChartFactory.setChartstyle(chartType);
try
{
NChartFactory.createNTASChart(type);
}
catch(Exceptione1)
{
e1.printStackTrace();
}
StringpicFileName=NChartFactory.getFileName();
StringgetPicURL=NChartFactory.getPicURL();
stringbuffer.append(NChartFactory.getChartMapHtml());
stringbuffer.append("");
JspWriterout=pageContext.getOut();
try
{
out.println(stringbuffer.toString());
}
catch(IOExceptione)
{
e.printStackTrace();
}
returnEVAL_PAGE;
}
publicintgetHeight()
{
returnheight;
}
publicStringgetType()
{
returntype;
}
publicintgetWidth()
{
returnwidth;
}
/ publicvoidsetHeight(inti)
{
height=i;
}
publicvoidsetType(Stringstring)
{
type=string;
}
publicvoidsetWidth(inti)
{
width=i;
}
publicStringgetAttrbuteName()
{
returnattrbuteName;
}
publicvoidsetAttrbuteName(Stringstring)
{
attrbuteName=string;
}
publicStringgetChartType()
{
returnchartType;
}
publicvoidsetChartType(Stringstring)
{
this.chartType=string;
}
}
JAVA学习必须明确这是一项投资,对于大多数的人来说,学习JAVA是为了就业,还有就是刚走向工作位置的朋友想尽快赶上工作的节奏。 |
|