用jsp編寫的網(wǎng)上測(cè)試系統(tǒng)。 (1)以“Windows身份驗(yàn)證模式”連接SQL Server數(shù)據(jù)庫(kù)。 (2)需要安裝SQL Server 的補(bǔ)丁SP3。 (3)運(yùn)行的時(shí)候可以參照書上的說(shuō)明進(jìn)行,如出試卷的時(shí)候,若試卷標(biāo)題重復(fù),可以從數(shù)據(jù)庫(kù)中刪除,然后添加試卷。 (4)出試卷路徑為 http://localhost:8080/chap22/chujuan.jsp 如果放在根目錄,則路徑和書上的界面一樣。 (5)選擇題路徑為 http://localhost:8080/chap22/xuanzeti.jsp (6)判斷題路徑為 http://localhost:8080/chap22/panduanti.jsp (7)如果采用本應(yīng)用中連接數(shù)據(jù)庫(kù)的方法調(diào)試不通,可以參照20章中通過(guò)ODBC連接數(shù)據(jù)庫(kù)的方法來(lái)修改 將以下代碼: Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver") String driver = "jdbc:microsoft:sqlserver://localhost:1433" Connection conn = DriverManager.getConnection(driver,"","") 修改成: Class.forName("sun.jdbc.odbc.JdbcOdbcDriver") String driver = "jdbc:odbc:try" Connection conn = DriverManager.getConnection(driver,"sa","") //如果是windows驗(yàn)證,則不用用戶名和密碼
標(biāo)簽: Server SQL Windows jsp
上傳時(shí)間: 2015-06-27
上傳用戶:450976175
An example to illustrate how to set the internal adjustable CID gain and receive FSK or DTMF data. Assume end-code of DTMF data String is "D".
標(biāo)簽: adjustable illustrate internal example
上傳時(shí)間: 2015-07-05
上傳用戶:nairui21
本書第二版和第三版之間的變化非常大其中最值得注意的是C++已經(jīng)通過(guò)了國(guó)際標(biāo) 準(zhǔn)化這不但為語(yǔ)言增加了新的特性比如異常處理運(yùn)行時(shí)刻類型識(shí)別RTTI 名字空 間內(nèi)置布爾數(shù)據(jù)類型新的強(qiáng)制轉(zhuǎn)換方式而且還大量修改并擴(kuò)展了現(xiàn)有的特性比如模 板template 支持面向?qū)ο髈bject-oriented 和基于對(duì)象object-based 程序設(shè)計(jì)所需 要的類class 機(jī)制嵌套類型以及重載函數(shù)的解析機(jī)制也許更重要的是一個(gè)覆蓋面非 常廣闊的庫(kù)現(xiàn)在成了標(biāo)準(zhǔn)C++的一部分其中包括以前稱為STL 標(biāo)準(zhǔn)模板庫(kù)的內(nèi)容新 的String 類型一組順序和關(guān)聯(lián)容器類型比如vector list map 和set 以及在這些類型 上進(jìn)行操作的一組可擴(kuò)展的泛型算法generic algorithm 都是這個(gè)新標(biāo)準(zhǔn)庫(kù)的特性本書 不但包括了許多新的資料而且還闡述了怎樣在C++中進(jìn)行程序設(shè)計(jì)的新的思考方法簡(jiǎn)而 言之實(shí)際上不但C++已經(jīng)被重新創(chuàng)造本書第三版也是如此
標(biāo)簽: RTTI 變化 內(nèi)置 國(guó)際
上傳時(shí)間: 2014-01-18
上傳用戶:784533221
加密算法 Test Driver for Crypto++, a C++ Class Library of Cryptographic Primitives: - To generate an RSA key cryptest g - To encrypt and decrypt a String using RSA cryptest r - To calculate MD5, SHS, and RIPEMD-160 message digests: cryptest m file - To encrypt and decrypt a String using DES-EDE in CBC mode: cryptest t - To encrypt or decrypt a file cryptest e|d input output - To share a file into shadows: cryptest s <pieces> <pieces-needed> file (make sure file has no extension, if you re running this under DOS) - To reconstruct a file from shadows: cryptest j output file1 file2 [....] - To gzip a file: cryptest z <compression-level> input output - To gunzip a file: cryptest u input output - To run validation tests: cryptest v - To run benchmarks: cryptest b [time for each benchmark in seconds]
標(biāo)簽: Cryptographic Primitives generate Library
上傳時(shí)間: 2015-07-16
上傳用戶:wqxstar
1. PL/0 語(yǔ)言介紹 ●PL/0 程序設(shè)計(jì)語(yǔ)言是一個(gè)較簡(jiǎn)單的語(yǔ)言,它以賦值語(yǔ)句為基礎(chǔ),構(gòu)造概念有順序、條件和重復(fù)(循環(huán))三種。PL/0 有子程序概念,包括過(guò)程定義(可以嵌套)與調(diào)用且有局部變量說(shuō)明。PL/0語(yǔ)言編譯程序采用以語(yǔ)法分析為核心、一遍掃描的編譯方法。詞法分析和代碼生成作為獨(dú)立的子程序供語(yǔ)法分析程序調(diào)用。語(yǔ)法分析的同時(shí),提供了出錯(cuò)報(bào)告和出錯(cuò)恢復(fù)的功能。在源程序沒(méi)有錯(cuò)誤編譯通過(guò)的情況下,調(diào)用類PCODE解釋程序解釋執(zhí)行生成的類PCODE代碼。 ●保留字(關(guān)鍵字):所謂保留字是指在Pascal語(yǔ)言中具有特定的含義。標(biāo)準(zhǔn)Pascal語(yǔ)言中的保留字一共有35個(gè),Turbo Pascal語(yǔ)言一共有51個(gè)。下面是Pascal語(yǔ)言的保留字:AND,ARRAY,BEGIN,CASE,CONST,DIV,DO,DOWNTO,ELSE,END,F(xiàn)ILE,F(xiàn)OR,F(xiàn)UNTION,GOTO,IF,IN,LABEL,MOD,NIL,NOT,OF,OR,PACKED,PROCEDURE,PROGRAM,RECORD,REPEAT,SET,THEN,TO,TYPE,UNTIL,VAR,WHILE,WITH,EXPORTS,SHR,String,ASM,OBJECT,UNIT,CONSTRUCTOR,IMPLEMENTATION,DESTRUCTOR,USES,INHERITED,INLINE,INTERFACE,LIBRARY,XOR,SHL
標(biāo)簽: PL 語(yǔ)言 程序設(shè)計(jì)語(yǔ)言
上傳時(shí)間: 2015-07-17
上傳用戶:zm7516678
通用的jsp分頁(yè)組件,實(shí)例化后只需設(shè)置好各種屬性,然后調(diào)用API即可得到已封裝好“首頁(yè)” “上一頁(yè)”,“下一頁(yè)”等分頁(yè)操作的html表格String,直接在jsp頁(yè)面中即可, 支持跳轉(zhuǎn)到j(luò)sp和跳轉(zhuǎn)到Action(struts架構(gòu))兩種類型,支持單選或者多選列,支持傳Vector 或者sql語(yǔ)句,支持?jǐn)?shù)據(jù)庫(kù)后端分頁(yè).... 具體參見源碼包中“使用說(shuō)明.txt”,里面有詳細(xì)的設(shè)置步驟,使用示例源碼
上傳時(shí)間: 2015-07-17
上傳用戶:thuyenvinh
not use Java API to produce two simple java implementation of a dictionary interface, LinkedListDictionary and HashDictionary, that maps a String key to an Object value
標(biāo)簽: implementation LinkedListDict dictionary interface
上傳時(shí)間: 2015-07-25
上傳用戶:黃華強(qiáng)
class NumberListener implements ActionListener{ public void actionPerformed(ActionEvent e){ if (!append) { tf.setText("") append=true } String s=tf.getText() s+=e.getActionCommand() tf.setText(s) if (!btn[10].isEnabled()){ for(int i=10 i<=14 i++) btn[i].setEnabled(true) } }
標(biāo)簽: actionPerformed NumberListener ActionListener ActionEvent
上傳時(shí)間: 2013-12-05
上傳用戶:wys0120
Here are some short instructions for use of mod-xslt. The stylesheet is specified using the Processing Instruction <?xml-stylesheet type="text/xsl" href="URL-OF-YOUR-STYLESHEET"?> or now new <?xslt-stylesheet agent="THE-USER-AGENT-String-OF-THE-BROWSER" href="URL-OF-YOUR-STYLESHEET"?> This now enables you to use different Stylesheets for different browsers. (For example Netscape & IE) (or Web & WAP for that matter)
標(biāo)簽: instructions stylesheet specified mod-xslt
上傳時(shí)間: 2014-01-14
上傳用戶:as275944189
Resourcer is an editor for .resources binaries and .resX XML file formats used with the .NET platform. The program allows the integration of bitmaps, icons and text Strings into resource packages. Resourcer allows editing of name/String pairs, import of various kinds of data formats (bitmaps, icons, etc) and merging of resources from different sources.
標(biāo)簽: Resourcer resources binaries formats
上傳時(shí)間: 2013-12-18
上傳用戶:s363994250
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1