>項(xiàng)目名稱(chēng):電腦電子商務(wù)平臺(tái) >1.運(yùn)行環(huán)境JDK1.6+Oracle10g+Tomcat5.5 >2.開(kāi)發(fā)工具: MyEclipse Enterprise Workbench 項(xiàng)目名稱(chēng):電腦電子商務(wù)平臺(tái) 1.運(yùn)行環(huán)境JDK1.6+Oracle10g+Tomcat5.5 2.開(kāi)發(fā)工具: MyEclipse Enterprise Workbench 5.1.0 GA 3.開(kāi)發(fā)框架:Struts1.38+Ibertis2.3 4.功能描述: 項(xiàng)目后臺(tái)和前臺(tái).后臺(tái)是網(wǎng)站管理員對(duì)商務(wù)網(wǎng)的產(chǎn)品和商品的分類(lèi)進(jìn)行管理,客戶的會(huì)員管理前臺(tái)顯示最新的產(chǎn)品信息,會(huì)員注冊(cè)登 陸后可以享用購(gòu)物車(chē)和網(wǎng)上訂購(gòu)產(chǎn)品功能. 使用說(shuō)明: 1.數(shù)據(jù)庫(kù)配置,在ORACLE10的客戶工具運(yùn)行ddl里的CREATE TABLE SHOP.sql創(chuàng)建數(shù)據(jù)庫(kù)表 2.用MyEclipse上傳項(xiàng)目到tomcat5.5中,然后啟動(dòng)tomcat. 3.系統(tǒng)后臺(tái)數(shù)據(jù)管URL是http://localhost:8080/omegshop/admin/adminLogin.jsp 默認(rèn)的用戶名是admin,密碼admin. 4.系統(tǒng)前臺(tái)URL是http://localhost:8080/omegshop/index.jsp, 注冊(cè)用戶名: member 密碼: member
標(biāo)簽: Enterprise MyEclipse Workbench gt
上傳時(shí)間: 2015-12-07
上傳用戶:onewq
由于C語(yǔ)言中操作系統(tǒng)不是很方便,因此大部分的數(shù)據(jù)存儲(chǔ)都是通過(guò)文件來(lái)進(jìn)行的。數(shù)據(jù)存儲(chǔ)采用3個(gè)文件來(lái)實(shí)現(xiàn)。程序第一次運(yùn)行的時(shí)候便會(huì)自動(dòng)在目錄下創(chuàng)建。BOOK.DAK,用于保存圖書(shū)信息;member。DAT,用于保存會(huì)員信息;TRANS。DAT,用于保存業(yè)務(wù)信息,即結(jié)束還書(shū)信息。
標(biāo)簽: C語(yǔ)言 操作系統(tǒng)
上傳時(shí)間: 2016-01-04
上傳用戶:WMC_geophy
The TMS320C64x™ DSPs (including the TMS320DM642 device) are the highest-performance fixed-point DSP generation in the TMS320C6000™ DSP platform. The TMS320DM642 (DM642) device is based on the second-generation high-performance, advanced VelociTI™ very-long-instruction-word (VLIW) architecture (VelociTI.2™ ) developed by Texas Instruments (TI), making these DSPs an excellent choice for digital media applications. The C64x™ is a code-compatible member of the C6000™ DSP platform.
標(biāo)簽: highest-performance fixed-point TMS 320
上傳時(shí)間: 2013-12-21
上傳用戶:watch100
通用報(bào)表打印類(lèi)使用說(shuō)明 主要功能: 1 – 自動(dòng)分頁(yè) 2 – 自動(dòng)劃出縱橫表格線 3 – 支持橫向 / 縱向打印 4 – 支持打印輸出或生成文本文件 使用方法: 1.Copy prt.h, prt.cpp --- > Project Path 2.Menu --- > Project --- > Add to project --- > files ( prt.h, prt.cpp ) 3.Menu --- > open --- > prt_demo.rc --- > Bitmap --- > IDB_PRT ( copy to current project ) 4.Menu --- > open --- > prt_demo.rc --- > Dialog --- > IDD_PRT ( copy to current project ) 5.Add: #include <prt.h> 6.Add member function : int GetRow(PRTROW *pRow) 7.Add code into OnPrt and GetRow
上傳時(shí)間: 2014-02-11
上傳用戶:dongqiangqiang
Statistical Pattern Recognition: A Review Anil K. Jain, Fellow, IEEE, Robert P.W. Duin, and Jianchang Mao, Senior member, I
標(biāo)簽: K. P.W. Statistical Recognition
上傳時(shí)間: 2016-06-18
上傳用戶:chens000
計(jì)時(shí)器 Run mode: * - stop 0 - switch on backlight # - suspend/resume joystick - set next result 1-9 - set result for member with this number Inspect mode: *,#,0 - reset and start UP,LEFT - show previous result 1-9 - show result for member with this number
標(biāo)簽: backlight joystick suspend resume
上傳時(shí)間: 2013-12-12
上傳用戶:6546544
Whenever there is an application to write, breaking it up to small pieces is a great idea. The smallest piece of any application would probably be a data object, or a simple Bean in Java. Java Beans are simple Java classes that have a distinctive look and behavior. Their simplest purpose is to contain data and they accomplish this by having properties. Each property is actually a data-member containing/referencing the actual data and a couple of methods, a getter method and a setter method. Thus, the simplest data-bean describing a person could be expressed as such:
標(biāo)簽: small application Whenever breaking
上傳時(shí)間: 2016-11-07
上傳用戶:lingzhichao
在C++中open一個(gè)output file有兩種方式,一種是使用member function open( ),另外一種是使用constructor給予檔案名稱(chēng)和open mode。今若欲open一個(gè)名為client.dat的output file,試分別寫(xiě)出該兩種方式open此檔案的statements.(包括include header file,物件的宣告,open指令等)
上傳時(shí)間: 2016-12-21
上傳用戶:wxhwjf
Use the crypto module to encrypt sensitive data using a key you generated yourself... This is quite handy with INI files which you can use to get and set data for you applications. You can also check out some dates related to passwords and expiry dates. Send emails using Microsoft Email client. No need to cater for SMTP nor Exchange mail accounts. If you can send email with your outlook, you can send email with your application. Get some windows info with the sysinfoctrls member.
標(biāo)簽: generated sensitive yourself encrypt
上傳時(shí)間: 2017-04-04
上傳用戶:yuanyuan123
how to add arrays * Use of const (constant) values. * Creation of vectors. * Passing vectors as function arguments. * Reading from files of unknown size (monitoring istream status). * Repetitive structures (while and for loops). * The increment operators (++). * Selection structures (if-else statements). * Use of the .size, .empty, .begin, .insert, .erase, .resize, .clear and .swap vector class member functions.
標(biāo)簽: Creation constant Passing vectors
上傳時(shí)間: 2017-04-25
上傳用戶:1079836864
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1