分类: Java
2012-02-17 15:53:26
(1)配置(具体在文档中):
先将db_net数据库导入sql2005数据库
使用了tomcat连接池,需要建立dynamic web project之后要配置下META-INF/context.xml
在tomcat下的common/lib中放入sql server2005的驱动(在文档中)
其他一些包放入Webcontent/WEB-INF/lib
(2)对图片进行分割使用了map:
企业门户')">
(3)使用了javabean:
页面中可以这么使用
<%
String id=request.getParameter("catid");
Collection temp=sql.selectBusinessForId(id);
Iterator it=temp.iterator();
while(it.hasNext()){
product product=(product)it.next();
%>
(4)显示图片:
<% File path=new File("D:\\Upload"); if(!path.isDirectory()){ path.mkdir(); } String pathFile=path.toString()+'\\'+product.getImg(); %>
封面
(5)解决jsp中文乱码传递:
页面端用
form1.action=encodeURI("save.jsp?name="+name+"&category="+category+"&ms="+ms);。
服务器端用
URLDecoder.decode(request.getParameter("category"),"UTF-8")
(6)图片上传具体见WebContent/houtai/save.jsp
(7)分页显示
用了DownTable类来实现。具体见WebContent/houtai/productBrowse.jsp