Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
CqylxInsert.java
Package: clientManager.rar [view]
Upload User: quasar007
Upload Date: 2022-08-11
Package Size: 4067k
Code Size: 1k
Category:
ERP-EIP-OA-Portal
Development Platform:
Java
- package com.webtier.clientQylxAction;
- import org.apache.struts.action.*;
- import javax.servlet.http.*;
- import com.service.CqylxFacade;
- import com.service.CqylxFacadeImpl;
- import com.tool.Chinese;
- import com.domain.CqylxForm;
- //插入操作
- public class CqylxInsert
- extends Action {
- private CqylxFacade qylx = null;
- public CqylxInsert() {
- this.qylx = new CqylxFacadeImpl();
- }
- public ActionForward perform(ActionMapping actionMapping,
- ActionForm actionForm,
- HttpServletRequest httpServletRequest,
- HttpServletResponse httpServletResponse) {
- Chinese chinese = new Chinese();
- CqylxForm cqylxForm = (CqylxForm) actionForm;
- cqylxForm.setQylx_id(chinese.str(httpServletRequest.getParameter("id")));
- cqylxForm.setQylx_lxmc(Chinese.str(httpServletRequest.getParameter("lxmc")));
- cqylxForm.setQylx_bz(chinese.str(httpServletRequest.getParameter("bz")));
- this.qylx.qylxInsert(cqylxForm);
- return actionMapping.findForward("cqylxInsert");
- }
- }