📄 register2_ok.java
字号:
/*
*this file is part of nseer erp
*Copyright (C)2006-2010 Nseer(Beijing) Technology co.LTD/http://www.nseer.com
*
*This program is free software; you can redistribute it and/or
*modify it under the terms of the GNU General Public License
*as published by the Free Software Foundation; either
*version 2 of the License, or (at your option) any later version.
*/
package portal.news;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import javax.servlet.*;
import java.sql.*;
import include.nseer_db.*;
import include.nseer_cookie.*;
import java.io.*;
import java.util.*;
import java.text.*;
import com.jspsmart.upload.*;
import include.nseer_cookie.getAttachmentLength;
import include.nseer_cookie.getAttachmentType;
import include.nseer_cookie.counter;
public class register2_ok extends HttpServlet{
public synchronized void service(HttpServletRequest request,HttpServletResponse response) throws IOException,ServletException{
HttpSession dbSession=request.getSession();
JspFactory _jspxFactory=JspFactory.getDefaultFactory();
PageContext pageContext = _jspxFactory.getPageContext(this,request,response,"",true,8192,true);
ServletContext dbApplication=dbSession.getServletContext();
try{
counter count=new counter(dbApplication);
HttpSession session=request.getSession();
ServletContext context=session.getServletContext();
String path=context.getRealPath("/");
SmartUpload mySmartUpload=new SmartUpload();
mySmartUpload.setCharset("UTF-8");
nseer_db_backup1 ecommerce_db = new nseer_db_backup1(dbApplication);
nseer_db_backup1 ecommerce_db1 = new nseer_db_backup1(dbApplication);
if(ecommerce_db.conn((String)dbSession.getAttribute("unit_db_name"))&&ecommerce_db1.conn((String)dbSession.getAttribute("unit_db_name"))){
String time="";
java.util.Date now = new java.util.Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd");
time=formatter.format(now);
getAttachmentLength getAttachmentLength=new getAttachmentLength();
getAttachmentType getAttachmentType=new getAttachmentType();
mySmartUpload.initialize(pageContext);
String file_type=getFileLength.getFileType((String)session.getAttribute("unit_db_name"));
long d=getFileLength.getFileLength((String)session.getAttribute("unit_db_name"));
mySmartUpload.setMaxFileSize(d);
mySmartUpload.setAllowedFilesList(file_type);
try{
mySmartUpload.upload();
String[] file_name=new String[mySmartUpload.getFiles().getCount()];
String name = mySmartUpload.getRequest().getParameter("name");
String sex = mySmartUpload.getRequest().getParameter("sex");
String company = mySmartUpload.getRequest().getParameter("company");
String address = mySmartUpload.getRequest().getParameter("address");
String tel = mySmartUpload.getRequest().getParameter("tel");
String email = mySmartUpload.getRequest().getParameter("email");
String kind = mySmartUpload.getRequest().getParameter("kind");
String write_time = mySmartUpload.getRequest().getParameter("write_time");
String comment = new String(mySmartUpload.getRequest().getParameter("comment").getBytes("UTF-8"),"UTF-8");
for(int i=0;i<mySmartUpload.getFiles().getCount();i++){
com.jspsmart.upload.SmartFile file = mySmartUpload.getFiles().getFile(i);
if (file.isMissing()){
file_name[i]="";
continue;
}
int filenum=count.read((String)dbSession.getAttribute("unit_db_name"),"ecommerceAttachmentcount");
count.write((String)dbSession.getAttribute("unit_db_name"),"ecommerceAttachmentcount",filenum);
file_name[i]=filenum+file.getFileName();
file.saveAs(path+"ecommerce/file_attachments/" + filenum+file.getFileName());
}
List rsList = (List)new java.util.ArrayList();
String[] elem=new String[3];
String sql="select id,describe1,describe2 from ecommerce_config_workflow where type_id='09'";
ResultSet rset=ecommerce_db.executeQuery(sql);
while(rset.next()){
elem=new String[3];
elem[0]=rset.getString("id");
elem[1]=rset.getString("describe1");
elem[2]=rset.getString("describe2");
rsList.add(elem);
}
String comment_ID=NseerId.getId("ecommerce/comment",(String)dbSession.getAttribute("unit_db_name"));
String sqla = "insert into ecommerce_comment(write_time,comment_ID,name,sex,company,address,tel,email,kind,comment";
String sqlb = ") values ('"+write_time+"','"+comment_ID+"','"+name+"','"+sex+"','"+company+"','"+address+"','"+tel+"','"+email+"','"+kind+"','"+comment+"'" ;
for(int i=0;i<mySmartUpload.getFiles().getCount();i++){
int p=i+1;
sqla=sqla+",attachment"+p;
sqlb=sqlb+",'"+file_name[i]+"'";
}
sql=sqla+sqlb+")";
ecommerce_db.executeUpdate(sql) ;
if(rsList.size()==0){
sql="update ecommerce_comment set check_tag='1' where comment_ID='"+comment_ID+"'";
ecommerce_db.executeUpdate(sql) ;
}else{
Iterator ite=rsList.iterator();
while(ite.hasNext()){
elem=(String[])ite.next();
sql = "insert into ecommerce_workflow(config_id,object_ID,describe1,describe2,type_id) values ('"+elem[0]+"','"+comment_ID+"','"+elem[1]+"','"+elem[2]+"','09')" ;
ecommerce_db.executeUpdate(sql) ;
}
}
response.sendRedirect("portal/comment/register1_ok_b.jsp");
ecommerce_db.commit();
ecommerce_db1.commit();
ecommerce_db.close();
ecommerce_db1.close();
}catch(Exception ex){
response.sendRedirect("portal/comment/register1_ok_a.jsp");
}
}else{
response.sendRedirect("error_conn.htm");
}
}catch(Exception ex){
ex.printStackTrace();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -