What Servlet

Size: px
Start display at page:

Download "What Servlet"

Transcription

1 7 JSTL 1.1 JSTL JavaServer Pages Standard Tag Library 1.1 JSTL JCP(Java Community Process) Java Web Web JSTL EL Web Java (Scripting) JSTL URL U18N XML SQL JSTL JSTL JSTL 1.1 简介 7-2 核心标签库 (Core tag library) 7-3 I18N 格式标签库 (I18N-capable formatting tags library) 7-4 SQL 标签库 (SQL tag library) 7-5 XML 标签库 (XML tag library) 7-6 函数标签库 (Functions tag library)

2 126 JSTL JSTL 1.1 JavaServer Pages Standard Tag Library (1.1 ) JSP JSTL XML 7-1 JSTL 1 (Core tag library) 2 I18N (I18N-capable formatting tag library) 3 SQL (SQL tag library) 4 XML (XML tag library) 5 (Functions tag library) 7-1 JSTL URI c <c:out> I18N fmt <fmt:formatdate> SQL sql <sql:query> XML xml <x:forbach> fn <fn:split> JSTL EL(Expression Language) JSP <%= userlist.getuser().getphonenumber() %> JSTL <c_rt:out value="<%= userlist.getuser( ).getphonenumber( ) %>" /> JSTL EL <c:out value="${userlist.user.phonenumber}" /> Java Script Java JSTL 1.1 JSTL 1.1 Servlet 2.4 JSP 2.0 Container JSTL Apache Jakarta Project JSTL 1.1 JSTL jakarta-taglibs-standard-current.zip 7-1

3 7-1 JSTL jakarta-taglibs-standard b1 lib jstl.jar standard.jar Tomcat WEB-INF\lib JSP JSTL.jar tld WEB-INF lib jstl.jar standard.jar old-dependencies JSTL 1.0 JSTL 1.1 tld TLD JSTL 1.0 TLD c-1_0.tld c-1_0-rt.tld HelloJSTL.jsp HelloJSTL.jsp page contenttype="text/html;charset=gb2312" %> taglib prefix="c" uri=" %> <html> <head> <title> JSTL </title> </head> <body> <c:out value=" JSTL "/> </br> <c:out value="${header['user-agent']}"/> <c:set var="a" value="david O'Davies" /> <c:out value="david O'Davies" escapexml="true"/> </body> </html> HelloJSTL.jsp (Core) EL header JSP JSTL taglib prefix="c" uri=" %> JSTL (prefix)

4 128 JSTL 1.1 c uri JSTL 1.0 uri jsp/ JSTL 1.1 JSTL uri JSTL 1.0 out value ${header['user-agent']} User-Agent <c:out value=" JSTL " /> <c:out value="${header['user-agent']}" /> HelloJSTL.jsp HelloJSTL.jsp taglib uri web.xml uri web.xml <web-app> <jsp-config> <taglib> <taglib-uri> <taglib-location>/web-inf/tld/c.tld</taglib-location> </taglib> </jsp-config> </web-app> <taglib-uri> URI <taglib-location> TLD <%@ taglib %> <%@ taglib prefix="c" uri=" %> JSTL 1.1 VS. JSTL 1.0 JSTL 1.0 JSTL 1.1

5 7-1 JSTL (1) EL JSTL 1.0 EL JSP 2.0 JSTL 1.1 EL JSTL EL (2) JSTL 1.0 EL RT JSTL 1.1 EL RT EL Expression Language RT Scriptlet Java EL (3) JSTL 1.1 ( functions) fn:contains fn:containsignorecase fn:endswith fn:indexof fn:join fn:length fn:replace fn:split fn:startswith fn:substring JSTL 1.1 B Changes standard-examples jakarta-taglibs-standard-current.zip ( 7-1) standard-examples.war Tomcat webapps Tomcat webapps standard-examples IE URL standard-examples 7-3 JSTL General Purpose Tags Conditional Tags Iterator Tags Import Tags I18N & Formatting Tags XML Tags SQL Tags Functions Tag Library Validators Miscellaneous

6 130 JSTL standard-examples JSTL 7-2 (Core tag library) (Core) URL out set remove catch if Core choose when otherwise foreach fortokens

7 7-2 (Core tag library) 131 Core URL import param url param redirect param JSP JSTL prefix taglib %> uri taglib prefix="c" uri=" %> JSTL JSTL JSTL <c:out> <c:set> <c:remove> <c:catch> <c:out> <c:out> <%= scripting-language %> Hello! <c:out value="${username}" /> 1 (body) <c:out value="value" [escapexml="{true false}"] [default="defaultvalue"] /> 2 <c:out value="value" [escapexml="{true false}"]> default value </c:out> EL value Y Object default value null default Y Object escapexml < < Y boolean true

8 132 JSTL 1.1 EL EL Y attribute = "${ }" N Null value null default default <c:out> < > & > &#039; " < &<c:out> escapexml fasle Entity < < > > &#039; " & & <c:out value="hello JSP 2.0!! " /> <c:out value="${ }" /> <c:out value="${ param.data }" default="no Data" /> <c:out value="<p> </p>" /> <c:out value="<p> </p>" escapexml="false" /> 1 Hello JSP 2.0!! data data data null No Data 4<p> </p> 5 <c:set> <c:set> JSP JavaBean 1 valuescope varname <c:set value="value" var="varname" [scope="{ page request session application }"]/> 2 scope varname <c:set var="varname" [scope="{ page request session application }"]> </c:set>

9 7-2 (Core tag library) value target <c:set value="value" target="target" property="propertyname" /> 4 target <c:set target="target" property="propertyname"> </c:set> EL value Y Object var N String scope target property Null var JSP N String page JavaBean java.util.map Y Object target Y String 3 4 target null target java.util.map JavaBean value null 1 var scope scope PageContext.removeAttribute(varName, scope) scope PageContext.removeAttribute(varName) 3 target Map Map.remove(property) target JavaBean property null <c:set> var scope scope="session" session <c:set> scope Page var scope scope="${ourscope}" var="${username}" <c:set var="number" scope="session" value="${1 + 1}"/>

10 134 JSTL number <c:set> value value <c:set> </c:set> <c:set var="number" scope="session"> <c:out value="${1+1}" /> </c:set> <c:out value="${1+1}" /> 2 <%=1+1%> <c:set> (body) value <c:set> body <c:set var="number" scope="session"> </c:set> number <c:set var="number" scope="request" value="${1 + 1}" /> <c:set var="number" scope="session" /> ${3 + 5} </c:set> <c:set var="number" scope="request" value="${ param.number }" /> <c:set target="user" property="name" value="${ param.username}" /> 1 2 Request number 2 8 Session number 3 ${param.number} null Request number ${param.number} null ${param.number} Request number 4 ${param.username} null User(JavaBean) name null null ${param.username} User(JavaBean) name ( setter ) 3. ${param.number} null Request number <c:remove> <c:remove> <c:remove var="varname" [scope="{ page request session application }"] /> EL var scope N String var JSP N String page

11 7-2 (Core tag library) 135 <c:remove> var scope <c:remove var="number" scope="session" /> number Session scope <c:remove> Page Request Session Application number <c:set> <c:remove> Core_set_remove.jsp Core_set_remove.jsp page contenttype="text/html;charset=gb2312" %> taglib prefix="c" uri=" %> <html> <head> <title>ch7 - Core_set_remove.jsp</title> </head> <body> <h2><c:out value="<c:set> <c:remove> " /></h2> <c:set scope="page" var="number"> <c:out value="${1+1}"/> </c:set> <c:set scope="request" var="number"> <%= 3 %> </c:set> <c:set scope="session" var="number"> 4 </c:set> <table border="1" width="30%"> <tr> <th>pagescope.number</th> <td><c:out value="${pagescope.number}" default="no Data" /></td> </tr> <tr> <th>requestscope.number</th> <td><c:out value="${requestscope.number}" default="no Data" /></td>

12 136 JSTL 1.1 </tr> <tr> <th>sessionscope.number</th> <td><c:out value="${sessionscope.number}" default="no Data" /></td> </tr> </table></br> <c:out value='<c:remove var="number" scope="page" />'/> <c:remove var="number" scope="page" /> <table border="1" width="30%"> <tr> <th>pagescope.number</th> <td><c:out value="${pagescope.number}" default="no Data" /></td> </tr> <tr> <th>requestscope.number</th> <td><c:out value="${requestscope.number}" default="no Data" /></td> </tr> <tr> <th>sessionscope.number</th> <td><c:out value="${sessionscope.number}" default="no Data" /></td> </tr> </table></br> <c:out value='<c:remove var="number" />'/> <c:remove var="number" /> <table border="1" width="30%"> <tr> <th>pagescope.number</th> <td><c:out value="${pagescope.number}" default="no Data" /></td> </tr> <tr> <th>requestscope.number</th> <td><c:out value="${requestscope.number}" default="no Data" /></td> </tr> <tr> <th>sessionscope.number</th> <td><c:out value="${sessionscope.number}" default="no Data" /></td> </tr> </table> </body> </html> Page Request Session number <c:remove var="number" scope="page" Page/> number <c:remove var="number" /> number Core_set_remove.jsp 7-4

13 7-2 (Core tag library) 137 <c:catch> 7-4 Core_set_remove.jsp <c:catch> <c:catch [var="varname"] > </c:catch> EL var N String <c:catch> <c:catch> </c:catch> varname <c:catch var="message"> // </c:catch>

14 138 JSTL 1.1 <c:catch> </c:catch> <c:catch> </c:catch> Core_catch.jsp <c:catch> Core_catch.jsp page contenttype="text/html;charset=gb2312 " %> taglib prefix="c" uri=" %> <html> <head> <title>ch7 - Core_catch.jsp</title> </head> <body> <h2><c:out value="<c:catch> " /></h2> <c:catch var="error_message"> <% String eformat = "not number"; int i = Integer.parseInt(eFormat); %> </c:catch> ${error_message} </body> </html> <c:catch> error_message <c:out> Core_catch.jsp <c:catch> <c:catch> </c:catch> 7-6

15 7-2 (Core tag library) Core_catch.jsp <c:catch> </c:catch> <c:if> <c:choose> <c:when> <c:otherwise> <c:if> <c:if> 1 (body) <c:if test="testcondition" var="varname" [scope="{page request session application}"]/> 2 <c:if test="testcondition" [var="varname"] [scope="{page request session application}"]> </c:if>

16 140 JSTL 1.1 EL test var true false Y boolean test true false N String scope var JSP N String page <c:if> test test true false${param.username param.username = = 'admin'} admin true admin false <c:if test="${param.username = = 'admin' }"> ADMIN!! //body </c:if> admin "ADMIN!! "< body "ADMIN!! //body " <c:if> JSP (Scriptlet) JSP HTML test <c:if> var scope<c:if> var scope var var scope Core_if.jsp Core_if.jsp <%@ page contenttype="text/html;charset=gb2312 " %> <%@ taglib prefix="c" uri=" <html> <head> <title>ch7 - Core_if.jsp</title> </head> <body> <h2><c:out value="<c:if> " /></h2> <c:if test="${param.username == 'Admin'}" var="condition" scope="page"> Admin </c:if></br>

17 7-2 (Core tag library) 141 : ${condition} </body> </html> username Admin condition true pagescope condition JSTL condition ${condition} ${pagescope.condition} Core_if.jsp 7-7 Core_if.jsp?username=Admin <c:choose> 7-7 Core_if.jsp <c:choose> <c:when> <c:otherwise> <c:choose> ( <when> <otherwise> ) </c:choose> <c:choose> 1 <c:when> 0 <c:otherwise>

18 142 JSTL 1.1 <c:when> <c:otherwise> <c:choose> <c:choose> <c:when> </c:when> <c:otherwise> </c:otherwise> </c:choose> <c:when> <c:when> when <c:when test="testcondition" > </c:when> EL test true false Y boolean <c:when> <c:choose> </c:choose> <c:choose> <c:when> <c:otherwise> <c:when> test test true false <c:otherwise> <c:choose> <c:when> <c:otherwise>

19 7-2 (Core tag library) 143 <c:otherwise> </c:otherwise> <c:otherwise> <c:choose> </c:choose> <c:choose> <c:otherwise> <c:choose> <c:when> test true <c:otherwise> <c:choose> <c:when> <c:otherwise> <c:choose> <c:when test="${condition1}"> condition1 true </c:when> <c:when test="${ condition2}"> condition2 true </c:when> <c:otherwise> condition1 condition2 false </c:otherwise> </c:choose> condition1 truecondition1 true condition1 false condition2 true condition2 truefalse condition1 condition2false condition1 condition2 true "condition1 true" <c:choose> <c:when> <c:when>

20 144 JSTL (Iterate) <c:foreach> <c:fortokens> <c:foreach> <c:foreach> (Collection) <c:foreach> 1 <c:foreach [var="varname"] items="collection" [varstatus="varstatusname"] </c:foreach> [begin="begin"] [end="end"] [step="step"]> 2 <c:foreach [var="varname"] [varstatus="varstatusname"] begin="begin" </c:foreach> end="end" [step="step"]> var EL N String items Y Arrays Collection Iterator Enumeration Map String varstatus N String begin Y int 0 end Y int step Y int 1 begin begin 0 end begin

21 7-2 (Core tag library) 145 step step 0 Null items null begin items items Core_forEach.jsp Core_forEach.jsp <%@ page contenttype="text/html;charset=gb2312 " %> <%@ taglib prefix="c" uri=" %> <html> <head> <title>ch7 - Core_forEach.jsp</title> </head> <body> <h2><c:out value="<c:foreach> " /></h2> <% %> String atts[] = new String [5]; atts[0]="hello"; atts[1]="this"; atts[2]="is"; atts[3]="a"; atts[4]="pen"; request.setattribute("atts", atts); <c:foreach items="${atts}" var="item" > ${item}</br> </c:foreach> </body> </html> atts Request <c:foreach> items var <c:out> item 7-8

22 146 JSTL Core_forEach.jsp varname <c:foreach> varname ${item} </c:foreach> <c:foreach items="${atts}" var="item" > </c:foreach> ${item}</br> ${item} <c:foreach> J2SE ArrayList List LinkedList Vector Stack Set java.util.map HashMap Hashtable Properties Provider Attributes <c:foreach> begin end step begin ( 0) end step Core_forEach1.jsp <%@ page contenttype="text/html;charset=gb2312" %> <%@ taglib prefix="c" uri=" %> <html> <head> <title>ch7 - Core_forEach1.jsp</title> </head> <body> <h2><c:out value="<c:foreach> begin end step " /></h2> <%

23 7-2 (Core tag library) 147 %> String atts[] = new String [5]; atts[0]="hello"; atts[1]="this"; atts[2]="is"; atts[3]="a"; atts[4]="pen"; request.setattribute("atts", atts); <c:foreach items="${atts}" var="item" begin="1" end="4" step="2" > ${item}</br> </c:foreach> </body> </html> <c:foreach> atts 2 5 atts[1] atts[3] Core_forEach1.jsp begin end step <% int atts[] = {1,2,3,4,5,6,7,8,9,10}; request.setattribute("atts", atts); %> <c:foreach items="${atts}" var="item" begin="0" end="9" step="1" > ${item}</br> </c:foreach> begin end step 7-4

24 148 JSTL begin end step (1) begin end (2) begin end (3) end end (4) <c:foreach> 7-4 items items begin end Core_forEach2.jsp <%@ page contenttype="text/html;charset=gb2312" %> <%@ taglib prefix="c" uri=" %> <html> <head> <title>ch7 - Core_forEach2.jsp</title> </head> <body> <h2><c:out value="<c:foreach> " /></h2> <c:foreach begin="1" end="10" var="item" > ${item}</br> </c:foreach> </body> </html> begin end 1 10

25 7-2 (Core tag library) 149 item Core_forEach2.jsp Core_forEach2.jsp step step step 2 <c:foreach> varstatus varstatus="s" s varstatus index count first last index number count number first boolean last boolean

26 150 JSTL 1.1 varstatus Core_forEach3.jsp page contenttype="text/html;charset=gb2312" %> taglib prefix="c" uri=" %> <html> <head> <title>ch7 - Core_forEach3.jsp</title> </head> <body> <h2><c:out value="<c:foreach> varstatus " /></h2> <% String atts[] = new String [5]; atts[0]="hello"; atts[1]="this"; atts[2]="is"; atts[3]="a"; atts[4]="pen"; request.setattribute("atts", atts); %> <c:foreach items="${atts}" var="item"varstatus="s"> <h2><c:out value="${item}"/></h2> index ${s.index}</br> count ${s.count}</br> first ${s.first}</br> last ${s.last}</br> </c:foreach> </body> </html> 7-12 <c:fortokens> <c:fortokens> <c:fortokens items="stringoftokens" delims="delimiters" [var="varname"] [varstatus="varstatusname"] [begin="begin"] [end="end"] [step="step"]> </c:fortokens>

27 7-2 (Core tag library) Core_forEach3.jsp var EL N String items Y String delims N String varstatus N String begin Y int 0 end Y int step Y int 1 begin begin 0 end begin step step 0 Null items null begin items

28 152 JSTL 1.1 <c:fortokens> begin end step var varstatus <c:foreach> items delims items delims items <c:fortokens> <c:fortokens items="a,b,c,d,e" delims="," var="item" > ${item} </c:fortokens> ABCDE, 5 5 A,B,C,D,E, items EL <% String phonenumber = " "; request.setattribute("userphone", phonenumber); %> <c:fortokens items="${userphone}" delims="-" var="item" > ${item} </c:fortokens> item delims <c:fortokens items="a,b;c-d,e" delims=",;-" var="item" > ${item} </c:fortokens> ABCDEdelims <c:foreach> <c:foreach items="a,b,c,d,e" var="item" > ${item} </c:foreach> ABCDE <c:foreach> delims <c:foreach> <c:foreach>, <c:fortokens> delims, <c:for <c:foreach> URL JSTL URL <c:import> <c:redirect> <c:url> url

29 7-2 (Core tag library) 153 <c:import> <c:import> JSP JSP Action <jsp:include> <jsp:include> web application <c:import> web application web application 1 <c:import url="url" [context="context"] [var="varname"] [scope="{page request session application}"] [charencoding="charencoding"]> </c:import> 2 <c:import url="url" [context="context"] varreader="varreadername" [charencoding="charencoding"]> </c:import> EL url Y String context Container / web Y String var ( String ) N String scope var JSP N String Page charencoding Y String varreader ( Reader ) N String Null url null JspException <c:import> url <c:import url=" />

30 154 JSTL 1.1 <c:import> <c:import> FTP FTP ftp.javaworld.com.tw data.txt <c:import url="ftp://ftp.cse.yzu.edu.tw/data.txt" /> Hello.jsp <c:import> webapps <c:import> <c:import url="hello.jsp" /> / web Tomcat webapps hello.txt webapps/examples/images context examples hello.txt JSP <c:import url="images/hello.txt" /> web context web others others jsp index.html <c:import url="/jsp/index.html" context="/others" /> web server.xml <Context> crosscontext trueothers web server.xml <Context path="/others" docbase="others" debug="0" reloadable="true" crosscontext="true"/> <c:import> var scope var String varname scope varname <c:import url="/images/hello.txt" var="s" scope="session" /> <c:import> <c:param>

31 7-2 (Core tag library) 155 name value EL name Y String value Y String EL <c:import url=" > <c:param name="test" value="1234" /> </c:import> <c:import> <c:param> Core_import.jsp Core_imported.jsp Core_import.jsp <%@ page contenttype="text/html;charset=gb2312" %> <%@ taglib prefix="c" uri=" %> <html> <head> <title>ch7 - Core_import.jsp</title> </head> <body> <h2><c:out value="<c:import> " /></h2> <c:set var="input1" value=" Core_imported.jsp " scope="request"/> core_imported.jsp <hr/> <c:import url="core_imported.jsp"charencoding="gb2312" > <c:param name="input2" value="<c:param> Core_imported.jsp "/> </c:import><hr/> ${output1} </body> </html> <c:set> <c:param>

32 156 JSTL 1.1 Core_imported.jsp page contenttype="text/html;charset=gb2312" %> taglib prefix="c" uri=" %> taglib prefix="fmt" uri=" %> <html> <head> <title>ch7 - Core_imported.jsp</title> </head> <body> <fmt:requestencoding value="gb2312" /> <c:set var="output1" value=" Core_import.jsp " scope="request"/> ${input1}</br> <c:out value="${param.input2}" escapexml="true" /> </body> </html> Core_imported.jsp Core_import.jsp input1 ${input1} input2 ${param.input2} <c:set> Core_import.jsp <c:param> <c:param> Core_import.jsp 7-13 <c:url> <c:url> URL 7-13 Core_import.jsp

33 7-2 (Core tag library) <c:url value="value" [context="context"] [var="varname"] [scope="{page request session application}"] /> 2 (Query String) <c:url value="value" [context="context"] [var="varname"] [scope="{page request session application}"] > <c:param> </c:url> EL value URL Y String context Container web / Y String var scope ( String ) N String var JSP N String Page <c:url value=" " > <c:param name="param" value="value"/> </c:url> <c:url> <c:param> HTML <a> <a href=" <c:url value=" " > <c:param name="param" value="value"/> </c:url>"> Java </a> <c:url> context var scope context <c:import> web <c:url> var varname <c:url> web <c:url> <c:url> web <img src="<c:url value="/images/code.gif" />" />

34 158 JSTL 1.1 image code.gif <c:redirect> <c:redirect> JSP 1 <c:redirect url="url" [context="context"] /> 2 (Query String) <c:redirect url="url" [context="context"] > <c:param> </c:redirect > EL url Y String context Container web / Y String url <c:redirect url=" /> context web /others /jsp/index.html <c:redirect url="/jsp/index.html" context="/others" /> <c:redirect> <c:param> Core_redirect.jsp <%@ page contenttype="text/html;charset=gb2312" %> <%@ taglib prefix="c" uri=" %> <html>

35 <head> <title>ch7 - Core_redirect.jsp</title> </head> <body> 7-2 (Core tag library) 159 <h2><c:out value="<c:redirect> " /></h2> <c:redirect url=" <c:param name="param" value="value"/> </c:redirect> <c:out value="!!!" /> </body> </html> Core_redirect.jsp

设计模式 Design Patterns

设计模式 Design Patterns 丁勇 Email:18442056@QQ.com 学习目标 理解核心标签库 理解国际化和格式化标签 理解 SQL 标签库 JSTL Server Pages 标准标签库 (JSTL) 包含的各种标签可用于 JSP 页面中 JSTL 的优点 提供一组标准标签 可用于编写各种动态 JSP 页面 用于访问数据库 有条件地执行代码和支持国际化 核心标签库 核心标签库包含以下标签 : 核心标签库 通用标签 条件标签

More information

untitled

untitled JavaEE+Android - 6 1.5-2 JavaEE web MIS OA ERP BOSS Android Android Google Map office HTML CSS,java Android + SQL Sever JavaWeb JavaScript/AJAX jquery Java Oracle SSH SSH EJB+JBOSS Android + 1. 2. IDE

More information

基于CDIO一体化理念的课程教学大纲设计

基于CDIO一体化理念的课程教学大纲设计 Java 语 言 程 序 设 计 课 程 教 学 大 纲 Java 语 言 程 序 设 计 课 程 教 学 大 纲 一 课 程 基 本 信 息 1. 课 程 代 码 :52001CC022 2. 课 程 名 称 :Java 语 言 程 序 设 计 3. 课 程 英 文 名 称 :Java Programming 4. 课 程 类 别 : 理 论 课 ( 含 实 验 上 机 或 实 践 ) 5. 授

More information

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2.

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2. 2005-06 p.1 HTML HyperText Mark-up Language 1. HTML Logo, Pascal, C++, Java HTML 2. HTML (tag) 3. HTML 4. HTML 1. HTML 2. 3. FTP HTML HTML html 1. html html html cutehtmleasyhtml 2. wyswyg (What you see

More information

steven

steven 知识点列表 编号 名称 描述 级别 1 jstl 是什么? 理解 jstl 技术 * 2 标签是什么? 理解标签技术 * 3 el 表达式是什么? 理解 el 表达式技术 * 4 el 表达式的基本语法 重点掌握 el 表达式的用法 ** 5 核心标签的使用 通过案例掌握一些核心标签的使用 ** 6 课堂练习 将雇员的增删改查案例使用标签重构 ** 注 : "*" 理解级别 "**" 掌握级别 "***"

More information

jsp

jsp JSP Allen Long Email: allen@huihoo.com http://www.huihoo.com 2004-04 Huihoo - Enterprise Open Source http://www.huihoo.com 1 JSP JSP JSP JSP MVC Huihoo - Enterprise Open Source http://www.huihoo.com 2

More information

1.JasperReport ireport JasperReport ireport JDK JDK JDK JDK ant ant...6

1.JasperReport ireport JasperReport ireport JDK JDK JDK JDK ant ant...6 www.brainysoft.net 1.JasperReport ireport...4 1.1 JasperReport...4 1.2 ireport...4 2....4 2.1 JDK...4 2.1.1 JDK...4 2.1.2 JDK...5 2.1.3 JDK...5 2.2 ant...6 2.2.1 ant...6 2.2.2 ant...6 2.3 JasperReport...7

More information

RUN_PC連載_10_.doc

RUN_PC連載_10_.doc PowerBuilder 8 (10) Jaguar CTS ASP Jaguar CTS PowerDynamo Jaguar CTS Microsoft ASP (Active Server Pages) ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar Server ASP

More information

(TestFailure) JUnit Framework AssertionFailedError JUnit Composite TestSuite Test TestSuite run() run() JUnit

(TestFailure) JUnit Framework AssertionFailedError JUnit Composite TestSuite Test TestSuite run() run() JUnit Tomcat Web JUnit Cactus JUnit Java Cactus JUnit 26.1 JUnit Java JUnit JUnit Java JSP Servlet JUnit Java Erich Gamma Kent Beck xunit JUnit boolean JUnit Java JUnit Java JUnit Java 26.1.1 JUnit JUnit How

More information

1 JSP 基础知识

1 JSP 基础知识 JSP 入门教程 北京理工大学计算机学院金旭亮 1 JSP 基础知识 概述 JSP 页面本质上是一个 Servlet, 在 JSP 容器中运行, 一个 Servlet 容器通常也是 JSP 容器, 当一个 JSP 页面第一次被请求时,Servlet/JSP 容器主要做以下两件事情 : (1) 转换 JSP 页面到 JSP 页面实现类, 该实现类是一个实现 javax.servlet.jsp.jsppage

More information

untitled

untitled 653 JAVA 2008 11 Institution of Software Engineer... 2... 4... 4... 5... 5... 8... 8... 8... 8... 8... 9... 9... 9... 11... 13... 13... 13... 13... 15... 15... 15... 15... 16... 16... 17... 17... 17...

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

Microsoft Word - 第3章.doc

Microsoft Word - 第3章.doc Java C++ Pascal C# C# if if if for while do while foreach while do while C# 3.1.1 ; 3-1 ischeck Test() While ischeck while static bool ischeck = true; public static void Test() while (ischeck) ; ischeck

More information

XXXXXXXX http://cdls.nstl.gov.cn 2 26

XXXXXXXX http://cdls.nstl.gov.cn 2 26 [ ] [ ] 2003-7-18 1 26 XXXXXXXX http://cdls.nstl.gov.cn 2 26 (2003-7-18) 1...5 1.1...5 1.2...5 1.3...5 2...6 2.1...6 2.2...6 2.3...6 3...7 3.1...7 3.1.1...7 3.1.2...7 3.1.2.1...7 3.1.2.1.1...8 3.1.2.1.2...10

More information

ASP 電子商務網頁設計

ASP 電子商務網頁設計 Flash Flash CSIE, NTU December 22, 2007 Outline & Flash National Taiwan University December 22, 2007 Page 2 Outline & Flash National Taiwan University December 22, 2007 Page 3 Course Introduction (1/3)

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 EAI EAI Middleware EAI 3.1 EAI EAI Client/Server Internet,www,Jav a 3.1 EAI Message Brokers -Data Transformation Business Rule XML XML 37 3.1 XML XML XML EAI XML 1. XML XML Java Script VB Script Active

More information

09 (File Processes) (mkdir) 9-3 (createnewfile) 9-4 (write) 9-5 (read) 9-6 (deletefile) 9-7 (deletedir) (Exercises)

09 (File Processes) (mkdir) 9-3 (createnewfile) 9-4 (write) 9-5 (read) 9-6 (deletefile) 9-7 (deletedir) (Exercises) 09 (File Processes) 9-1 9-2 (mkdir) 9-3 (createnewfile) 9-4 (write) 9-5 (read) 9-6 (deletefile) 9-7 (deletedir) (Exercises) Java Servlet 9-1 Servlet (File Processes) Client Servlet Servlet Java Java (Stream)

More information

JSP基础编程

JSP基础编程 JSP 基础编程 报告人 : 包亮 邮箱 :rslab@lzb.ac.cn HTTP 基础 HTTP is a simple, stateless protocol. A client, such as a web browser, makes a request, the web server responds, and the transaction is done. Client 发出一个请求

More information

2 SGML, XML Document Traditional WYSIWYG Document Content Presentation Content Presentation Structure Structure? XML/SGML 3 2 SGML SGML Standard Gener

2 SGML, XML Document Traditional WYSIWYG Document Content Presentation Content Presentation Structure Structure? XML/SGML 3 2 SGML SGML Standard Gener SGML HTML XML 1 SGML XML Extensible Markup Language XML SGML Standard Generalized Markup Language, ISO 8879, SGML HTML ( Hypertext Markup Language HTML) (Markup Language) (Tag) < > Markup (ISO) 1986 SGML

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

基于ECO的UML模型驱动的数据库应用开发1.doc

基于ECO的UML模型驱动的数据库应用开发1.doc ECO UML () Object RDBMS Mapping.Net Framework Java C# RAD DataSetOleDbConnection DataGrod RAD Client/Server RAD RAD DataReader["Spell"].ToString() AObj.XXX bug sql UML OR Mapping RAD Lazy load round trip

More information

untitled

untitled PowerBuilder Tips 利 PB11 Web Service 年度 2 PB Tips PB9 EAServer 5 web service PB9 EAServer 5 了 便 web service 來說 PB9 web service 力 9 PB11 release PB11 web service 力更 令.NET web service PB NVO 論 不 PB 來說 說

More information

RUN_PC連載_8_.doc

RUN_PC連載_8_.doc PowerBuilder 8 (8) Web DataWindow ( ) DataWindow Web DataWindow Web DataWindow Web DataWindow PowerDynamo Web DataWindow / Web DataWindow Web DataWindow Wizard Web DataWindow Web DataWindow DataWindow

More information

Microsoft Word - 01.DOC

Microsoft Word - 01.DOC 第 1 章 JavaScript 简 介 JavaScript 是 NetScape 公 司 为 Navigator 浏 览 器 开 发 的, 是 写 在 HTML 文 件 中 的 一 种 脚 本 语 言, 能 实 现 网 页 内 容 的 交 互 显 示 当 用 户 在 客 户 端 显 示 该 网 页 时, 浏 览 器 就 会 执 行 JavaScript 程 序, 用 户 通 过 交 互 式 的

More information

前言 C# C# C# C C# C# C# C# C# microservices C# More Effective C# More Effective C# C# C# C# Effective C# 50 C# C# 7 Effective vii

前言 C# C# C# C C# C# C# C# C# microservices C# More Effective C# More Effective C# C# C# C# Effective C# 50 C# C# 7 Effective vii 前言 C# C# C# C C# C# C# C# C# microservices C# More Effective C# More Effective C# C# C# C# Effective C# 50 C# C# 7 Effective vii C# 7 More Effective C# C# C# C# C# C# Common Language Runtime CLR just-in-time

More information

+ 数学运算符, 加操作 - 数学运算符, 减操作或者对一个值取反 * 数学运算符, 乘操作 / 或 div % 或 mod == 或 e!= 或 ne < 或 lt > 或 gt <= 或 le >= 或 ge && 或 and 或 or! 或 not 数学运算符, 除操作数学运算符, 模操作 (

+ 数学运算符, 加操作 - 数学运算符, 减操作或者对一个值取反 * 数学运算符, 乘操作 / 或 div % 或 mod == 或 e!= 或 ne < 或 lt > 或 gt <= 或 le >= 或 ge && 或 and 或 or! 或 not 数学运算符, 除操作数学运算符, 模操作 ( JSTL 概述 概述 在 JSP 页面中, 使用标签库代替传统的 Java 片段语言来实现页面的显示逻辑已经不是新技术了, 然而, 由自定义标签很容易造成重复定义和非标准的实现 鉴于此, 出现了 JSTL ( JSP Standard Tag Library ) 大多数 JSP 页面逻辑提供了实现的 JSTL 技术, 该技术本身就是一个标签库 Sun 公司 Java 规范标准的 JSTL 由 apache

More information

epub 94-3

epub 94-3 3 A u t o C A D L AY E R L I N E T Y P E O S N A P S T Y L E X R E F - AutoLISP Object ARX A u t o C A D D C L A u t o C A D A u t o d e s k P D B D C L P D B D C L D C L 3.1 Wi n d o w s A u t o C A D

More information

OSWorkflow Documentation

OSWorkflow Documentation OSWorkflow Documentation Update Time: 05/09/15 OSWorkflow Java workflow engine API 理 flow 行 XML 來 流 Database UI 不 流 GUI Designer end user 行 JSP+Servlet 行 OSWorkflow 2.8 說 2.7 2.7 了 OSWorkflow library library

More information

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 Web (CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 1092 1/ 16 30.75 748 2005 1 1 2005 1 1 : 1 3 100

More information

untitled

untitled -JAVA 1. Java IDC 20 20% 5 2005 42.5 JAVA IDC JAVA 60% 70% JAVA 3 5 10 JAVA JAVA JAVA J2EE J2SE J2ME 70% JAVA JAVA 20 1 51 2. JAVA SUN JAVA J2EE J2EE 3. 1. CSTP CSTP 2 51 2. 3. CSTP IT CSTP IT IT CSTP

More information

Microsoft Word - SCWCD-CH01.doc

Microsoft Word - SCWCD-CH01.doc Java SCWCD 5(Sun Certified Web Component Developer) 全 名 為, 屬 於 專 業 級 這 項 主 要 是 確 保 開 發 工 程 師 具 備 能 使 用 JavaServer Pages Servlet 技 術 所 提 供 Web 服 務 動 態 Web 內 容 的 能 力 對 於 想 要 開 發 Web 應 用 程 的 開 發 人 員 來 說,

More information

untitled

untitled 1 .NET 利 [] [] 來 說 切 切 理 [] [ ] 來 說 拉 類 類 [] [ ] 列 連 Web 行流 來 了 不 不 不 流 立 行 Page 類 Load 理 Response 類 Write 料 Redirect URL Response.Write("!! ives!!"); Response.Redirect("WebForm2.aspx"); (1) (2) Web Form

More information

优迈科技教学大纲2009版本

优迈科技教学大纲2009版本 java 软 件 工 程 师 培 训 教 学 大 纲 1 JAVA 软 件 工 程 师 培 训 教 学 大 纲 深 圳 软 件 园 人 才 实 训 基 地 2009 年 3 月 目 录 java 软 件 工 程 师 培 训 教 学 大 纲 2 教 学 阶 段...3 第 一 章 JAVA 起 步...3 第 二 章 面 向 对 象 的 编 程...4 第 三 章 数 据 结 构 IO 线 程 网 络...5

More information

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

untitled

untitled Work Managers 什 Work Managers? WebLogic Server 9.x 行 (thread) 理 thread pool 數量 立 execute queues 來 量 理 thread count, thread priority 參數 理 thread pool 數量? WebLogic Server 9.x 理 行 (thread) (self-tuning) 句

More information

EJB-Programming-4-cn.doc

EJB-Programming-4-cn.doc EJB (4) : (Entity Bean Value Object ) JBuilder EJB 2.x CMP EJB Relationships JBuilder EJB Test Client EJB EJB Seminar CMP Entity Beans Session Bean J2EE Session Façade Design Pattern Session Bean Session

More information

untitled

untitled 01 1-1 PHP 1-2 PHP 1-3 MySQL 1-4 1-5 http://w3techs.com/technologies/history_overview/programming_language w3techs.com (Server-side) 2012 7 77.8% PHP PHP PHP PHP 1-1 PHP PHP HTML Script Windows ASP(Active

More information

设计模式 Design Patterns

设计模式 Design Patterns 丁勇 Email:18442056@QQ.com 学习目标 描述 JSP 表达式语言的语法 认识使用 JSP 表达式的优点 在 JSP 中使用表达式语言 表达式语言简介 5 1 EL 为表达式语言 由两个组开发 JSP 标准标签库专家组 JSP 2.0 专家组 JSP 表达式语言的语法 ${EL Expression} JSP EL 表达式用于以下情形 静态文本 标准标签和自定义标签 表达式语言简介

More information

EJB-Programming-3.PDF

EJB-Programming-3.PDF :, JBuilder EJB 2.x CMP EJB Relationships JBuilder EJB Test Client EJB EJB Seminar CMP Entity Beans Value Object Design Pattern J2EE Design Patterns Value Object Value Object Factory J2EE EJB Test Client

More information

A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ / ] NotePad A-2

A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ / ] NotePad A-2 HTML A-1 HTML A-2 A-2 HTML A-8 A-3 A-14 A-4 A-26 A-5 A-30 A-6 A-42 A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ /

More information

關於本書 l 3 PhoneGap Appcelerator Titanium Sencha Touch (wrapper framework) Native App PhoneGap Build Native App Hybrid App Java Objective-C Android SDK

關於本書 l 3 PhoneGap Appcelerator Titanium Sencha Touch (wrapper framework) Native App PhoneGap Build Native App Hybrid App Java Objective-C Android SDK 2 l 跨裝置網頁設計 Android ios Windows 8 BlackBerry OS Android HTML 5 HTML 5 HTML 4.01 HTML 5 CSS 3 CSS 3 CSS 2.01 CSS 3 2D/3D PC JavaScript

More information

untitled

untitled 1 LinkButton LinkButton 連 Button Text Visible Click HyperLink HyperLink 來 立 連 Text ImageUrl ( ) NavigateUrl 連 Target 連 _blank _parent frameset _search _self 連 _top 例 sample2-a1 易 連 private void Page_Load(object

More information

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费 助 理 电 子 商 务 考 试 真 题 试 题 第 一 部 分 : 理 论 部 分 一 单 项 选 择 题 1 ( B ) 是 信 息 系 统 的 核 心 组 成 部 分 A 逻 辑 模 型 B 数 据 库 C 概 念 模 型 D 以 上 全 部 2 ping www.163.com -t 中 参 数 t 的 作 用 是 :( A ) A 进 行 连 续 测 试 B 在 新 窗 口 中 显 示 C

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Perl CGI 1 Perl CGI 2 Perl CGI 3 Perl CGI 4 1. 2. 1. #!/usr/local/bin/perl 2. print "Content-type: text/html n n"; 3. print " n"; 4. print " n"; 3. 4.

More information

( Version 0.4 ) 1

( Version 0.4 ) 1 ( Version 0.4 ) 1 3 3.... 3 3 5.... 9 10 12 Entities-Relationship Model. 13 14 15.. 17 2 ( ) version 0.3 Int TextVarchar byte byte byte 3 Id Int 20 Name Surname Varchar 20 Forename Varchar 20 Alternate

More information

untitled

untitled ADF Web ArcGIS Server ADF GeocodeConnection control 4-2 Web ArcGIS Server Application Developer Framework (ADF).NET interop semblies.net Web ADF GIS Server 4-3 .NET ADF Web Represent the views in ArcMap

More information

59 1 CSpace 2 CSpace CSpace URL CSpace 1 CSpace URL 2 Lucene 3 ID 4 ID Web 1. 2 CSpace LireSolr 3 LireSolr 3 Web LireSolr ID

59 1 CSpace 2 CSpace CSpace URL CSpace 1 CSpace URL 2 Lucene 3 ID 4 ID Web 1. 2 CSpace LireSolr 3 LireSolr 3 Web LireSolr ID 58 2016. 14 * LireSolr LireSolr CEDD Ajax CSpace LireSolr CEDD Abstract In order to offer better image support services it is necessary to extend the image retrieval function of our institutional repository.

More information

D getinitparameternames() 9 下 列 选 项 中, 属 于 Servlet API 中 提 供 的 request 对 象 的 包 装 类 的 是 ( ) A HttpServletRequestWrapper B HttpServletRequest C HttpServ

D getinitparameternames() 9 下 列 选 项 中, 属 于 Servlet API 中 提 供 的 request 对 象 的 包 装 类 的 是 ( ) A HttpServletRequestWrapper B HttpServletRequest C HttpServ 第 四 章 Filter( 过 滤 器 ) 样 题 A 卷 一 选 择 题 ( 每 小 题 2 分, 共 20 分 ) 1 下 面 选 项 中, 用 于 实 现 初 始 化 过 滤 器 的 方 法 是 ( ) A init(filterconfig filterconfig) B dofilter(servletrequest req,servletresponse resp,filterchain

More information

TopTest_Adminstrator.doc

TopTest_Adminstrator.doc 壹 前 言... 3 貳 系 統 簡 介... 4 一 TKB multimedia Top-Test 系 統 架 構...4 1. 使 用 者 介 面 層 (Presentation tier)...5 2. 商 業 邏 輯 層 (business logic tier)...5 3. 資 料 服 務 層 (data services tier)...5 二 TKB Multimedia Top-Test

More information

<ADB6ADB1C25EA8FAA6DB2D4D56432E706466>

<ADB6ADB1C25EA8FAA6DB2D4D56432E706466> packages 3-31 PART 3-31 03-03 ASP.NET ASP.N MVC ASP.NET ASP.N MVC 4 ASP.NET ASP.NE MVC Entity Entity Framework Code First 2 TIPS Visual Studio 20NuGetEntity NuGetEntity Framework5.0 CHAPTER 03 59 3-3-1

More information

基于UML建模的管理管理信息系统项目案例导航——VB篇

基于UML建模的管理管理信息系统项目案例导航——VB篇 PowerBuilder 8.0 PowerBuilder 8.0 12 PowerBuilder 8.0 PowerScript PowerBuilder CIP PowerBuilder 8.0 /. 2004 21 ISBN 7-03-014600-X.P.. -,PowerBuilder 8.0 - -.TP311.56 CIP 2004 117494 / / 16 100717 http://www.sciencep.com

More information

SL2511 SR Plus 操作手冊_單面.doc

SL2511 SR Plus 操作手冊_單面.doc IEEE 802.11b SL-2511 SR Plus SENAO INTERNATIONAL CO., LTD www.senao.com - 1 - - 2 - .5 1-1...5 1-2...6 1-3...6 1-4...7.9 2-1...9 2-2 IE...11 SL-2511 SR Plus....13 3-1...13 3-2...14 3-3...15 3-4...16-3

More information

Microsoft Word - 28935样章.dot

Microsoft Word - 28935样章.dot 21 世 纪 高 职 高 专 规 划 教 材 系 列 何 福 贵 张 梅 编 著 机 械 工 业 出 版 社 IV 本 书 全 面 地 介 绍 了 网 页 制 作 技 术 及 其 相 关 理 论 全 书 共 分 12 章, 包 括 绪 论 网 站 的 创 建 与 管 理 网 页 基 本 元 素 实 现 网 页 页 面 布 局 实 现 表 单 的 应 用 CSS 与 模 板 使 用 Div 和 AP

More information

What Servlet

What Servlet 6 第六章 Expression Language 本章将分以下 8 节, 详细介绍 Expression Language 的语法和使用 : 100 第六章 Expression Language 6-1 EL 简介 EL 全名为 Expression Language, 它原本是 JSTL 1.0 为方便存取数据所自定义的语言 当时 EL 只能在 JSTL 标签中使用, 如下 :

More information

RunPC2_.doc

RunPC2_.doc PowerBuilder 8 (5) PowerBuilder Client/Server Jaguar Server Jaguar Server Connection Cache Thin Client Internet Connection Pooling EAServer Connection Cache Connection Cache Connection Cache Connection

More information

「人名權威檔」資料庫欄位建置表

「人名權威檔」資料庫欄位建置表 ( version 0.2) 1 3 3 3 3 5 6 9.... 11 Entities - Relationship Model..... 12 13 14 16 2 ( ) Int Varchar Text byte byte byte Id Int 20 Name Surname Varchar 20 Forename Varchar 20 Alternate Type Varchar 10

More information

ebook193-1

ebook193-1 1 Domino Web 1.1 D o m i n o We b, D o m i n o N e t s c a p e O r a c l e We b D o m i n o We b Lotus Notes, D o m i n o D o m i n o We b D o m i n o N o t e s N o t e Domino We b D o m i n o D o m i

More information

Microsoft Word - 正文.doc

Microsoft Word - 正文.doc 3 Access 3.1 SharePoint SharePoint SharePoint 3.6 1 1.15 1 3.1 3.2 1 3.1 40 Access 3.2 2 ID / 3.3 3 3.4 3.5 3.3 / 3.4 3.5 3 41 4 / 6 3.6 3.6 5 1 40 24 3.7 3.7 6 3.8 * 3.8 2 42 Access 1.16 1 3.1 / 1 3.9

More information

05 01 accordion UI containers 03 Accordion accordion UI accordion 54

05 01 accordion UI containers 03 Accordion accordion UI accordion 54 jquery UI plugin Accordion 05 01 accordion UI containers 03 Accordion accordion UI accordion 54 05 jquery UI plugin 3-1

More information

<4D6963726F736F667420576F7264202D20BBF9D3DA416E64726F6964C6BDCCA8B5C4B5E7D7D3C5C4C2F4CFB5CDB32E646F63>

<4D6963726F736F667420576F7264202D20BBF9D3DA416E64726F6964C6BDCCA8B5C4B5E7D7D3C5C4C2F4CFB5CDB32E646F63> 基 于 Android 平 台 的 电 子 拍 卖 系 统 摘 要 本 电 子 拍 卖 系 统 其 实 就 是 一 个 电 子 商 务 平 台, 只 要 将 该 系 统 部 署 到 互 联 网 上, 客 户 都 可 以 在 该 系 统 上 发 布 想 出 售 的 商 品, 也 可 以 对 拍 卖 中 的 商 品 参 与 竞 价 整 个 过 程 无 须 人 工 干 预, 由 系 统 自 动 完 成 本

More information

untitled

untitled 12-1 -2 VC# Web Blog 12-1 -1-1 12-1.1-1 C:\ ChartModuleSample_CSharp\Application\2001\ Files\ 4096 KB 120 Web.Config httpruntime maxrequestlength executiontimeout 12-2

More information

最即時的Sybase ASE Server資料庫診斷工具

最即時的Sybase ASE Server資料庫診斷工具 How to using M-Power Server 行 M-Power Report setup.exe M-Power Report Server MPRS 了 說 M-Power Report Server 料 行 料 料 M-Power Report Server J2SE Development Kit 5.0 連 port 料 MPRS Web-Application MPRS Page

More information

WWW PHP

WWW PHP WWW PHP 2003 1 2 function function_name (parameter 1, parameter 2, parameter n ) statement list function_name sin, Sin, SIN parameter 1, parameter 2, parameter n 0 1 1 PHP HTML 3 function strcat ($left,

More information

ii Vue Bootstrap 4 ES 6 Vue Vue Bootstrap 4 ES 6 Vue 2 vue html vue html vue Vue HTML 5 CSS ES 6 HTML 5 CSS Visual Studio Code h

ii Vue Bootstrap 4 ES 6 Vue Vue Bootstrap 4 ES 6 Vue 2 vue html vue html vue Vue HTML 5 CSS ES 6 HTML 5 CSS Visual Studio Code h ii Vue Bootstrap 4 ES 6 Vue Vue Bootstrap 4 ES 6 Vue 2 vue010101.html vue010104.html vue0101 01 04 Vue HTML 5 CSS ES 6 HTML 5 CSS Visual Studio Code https://code.visualstudio.com/ Chrome XAMP Visual Studio

More information

BIBLID (2002) 91:1 pp XML [1] [ 2 Portal Site ] [ 3 ] PChome Online [ 4 ] [5] [ 1 ]

BIBLID (2002) 91:1 pp XML [1] [ 2 Portal Site ] [ 3 ] PChome Online [ 4 ] [5] [ 1 ] BIBLID 1026-5279 (2002) 91:1 pp. 117-131 91 1 91 6 1 1 7 XML 90 1 2 2001 [1] [ 2 Portal Site ] [ 3 ] PChome Online [ 4 ] [5] [ 1 ] 2001 http://survey.yam.com/survey2001/chart/a_29.html [2] http://www.yahoo.com

More information

untitled

untitled 2006 6 Geoframe Geoframe 4.0.3 Geoframe 1.2 1 Project Manager Project Management Create a new project Create a new project ( ) OK storage setting OK (Create charisma project extension) NO OK 2 Edit project

More information

没 有 多 余 的 Contruol 或 Action 了 原 来 Domain 层 被 服 务 层 Service layer 遮 挡, 在 右 边 图 中, 则 Domain 层 直 接 暴 露 给 前 台 了, 没 有 被 遮 挡, 裸 露 了 这 样 一 步 到 位 实 现 领 域 模 型

没 有 多 余 的 Contruol 或 Action 了 原 来 Domain 层 被 服 务 层 Service layer 遮 挡, 在 右 边 图 中, 则 Domain 层 直 接 暴 露 给 前 台 了, 没 有 被 遮 挡, 裸 露 了 这 样 一 步 到 位 实 现 领 域 模 型 文 章 编 号 :1007-757X(2012)1-0036-04 领 域 驱 动 模 型 的 WEB 软 件 系 统 设 计 研 究 摘 要 : J2EE 3 JDK1.7 Tomcat WEB 关 键 词 : 中 图 分 类 号 :TP311 文 献 标 志 码 :A 0 引 言 Web 软 件 系 统 的 分 层 结 构 典 型 的 J2EE 软 件 系 统 开 发 方 法 分 为 三 层 结

More information

大连理工大学专业学位硕士学位论文

大连理工大学专业学位硕士学位论文 学 生 姓 名 : 刘 效 坤, 盖 文 迪, 郭 乐 铭 周 晓 红, 齐 凤 霞, 张 英 明 学 专 班 院 : 信 息 学 院 业 : 物 联 网 工 程 级 : 13 级 学 号 : 201303041059 指 导 教 师 : 张 丽 审 阅 教 师 : 张 丽 完 成 日 期 : 2015/10/11 摘 要 本 文 采 用 自 顶 向 下 的 结 构 化 的 网 站 分 析 方 法,

More information

附件2

附件2 附 件 2 辽 宁 省 普 通 高 等 学 校 本 科 优 势 特 色 专 业 申 报 书 专 业 名 称 : 软 件 工 程 专 业 代 码 : 080902 推 荐 学 校 ( 公 章 ): 大 连 交 通 大 学 推 荐 学 校 代 码 : 10150 专 业 带 头 人 : 梁 旭 联 系 电 话 ( 手 机 ): 13842899132 辽 宁 省 教 育 厅 制 2015 年 6 月 一

More information

untitled

untitled 1 .NET sln csproj dll cs aspx 說 料 料 利 來 料 ( 來 ) 利 [] [] 來 說 切 切 理 [] [ ] 來 說 拉 類 類 [] [ ] 列 連 Web 行流 來 了 不 不 不 流 立 行 Page 類 Load 理 Click 滑 料 Response 列 料 Response HttpResponse 類 Write 料 Redirect URL Response.Write("!!

More information

第一章 章标题-F2 上空24,下空24

第一章 章标题-F2 上空24,下空24 Web 9 XML.NET Web Web Service Web Service Web Service Web Service Web Service ASP.NET Session Application SOAP Web Service 9.1 Web Web.NET Web Service Web SOAP Simple Object Access Protocol 9.1.1 Web Web

More information

Servlet

Servlet Servlet Allen Long Email: allen@huihoo.com http://www.huihoo.com 2004-04 Huihoo - Enterprise Open Source http://www.huihoo.com 1 Huihoo - Enterprise Open Source http://www.huihoo.com 2 GET POST Huihoo

More information

(Geographic data or geodata ) 30 (Buelher, K and L. Mckee1996) (Open GIS Consortium OGC) OGC GIS Open GIS OGC (Geography Markup Langu

(Geographic data or geodata ) 30 (Buelher, K and L. Mckee1996) (Open GIS Consortium OGC) OGC GIS Open GIS OGC (Geography Markup Langu 2004 1 1 2 3 4 (Open GIS Consortium, OGC) (Geography Markup Lang uage, GML GML) GIS GML GIS GML GML GML GML TGML(Taipei-GML) application schema TGML TGML TGML 1 2 3 4 1 2004 1. (Geographic data or geodata

More information

weblogic

weblogic Weblogic Allen Long allen@huihoo.com http://www.huihoo.com 2004-04 1 WebLogic, WLS WLS Domain 2 Weblogic6.1 Weblogic6.1 J2EE1.2,J2EE1.3 HTTP 1.1 J2EE Connector Architecture 1.0 J2EE EJB 2.0 J2EE JDBC 2.0

More information

Microsoft Word - 11.doc

Microsoft Word - 11.doc 除 錯 技 巧 您 將 於 本 章 學 到 以 下 各 項 : 如 何 在 Visual C++ 2010 的 除 錯 工 具 控 制 下 執 行 程 式? 如 何 逐 步 地 執 行 程 式 的 敘 述? 如 何 監 看 或 改 變 程 式 中 的 變 數 值? 如 何 監 看 程 式 中 計 算 式 的 值? 何 謂 Call Stack? 何 謂 診 斷 器 (assertion)? 如 何

More information

1

1 PRIMETON TECHNOLOGIES, LTD. EOS EOS Manager No part of this document may be reproduced, stored in any electronic retrieval system, or transmitted in any form or by any means, mechanical, photocopying,

More information

02

02 Thinking in C++: Volume One: Introduction to Standard C++, Second Edition & Volume Two: Practical Programming C++ C C++ C++ 3 3 C C class C++ C++ C++ C++ string vector 2.1 interpreter compiler 2.1.1 BASIC

More information

untitled

untitled 1 Outline 料 類 說 Tang, Shih-Hsuan 2006/07/26 ~ 2006/09/02 六 PM 7:00 ~ 9:30 聯 ives.net@gmail.com www.csie.ntu.edu.tw/~r93057/aspnet134 度 C# 力 度 C# Web SQL 料 DataGrid DataList 參 ASP.NET 1.0 C# 例 ASP.NET 立

More information

IBM Rational ClearQuest Client for Eclipse 1/ IBM Rational ClearQuest Client for Ecl

IBM Rational ClearQuest Client for Eclipse   1/ IBM Rational ClearQuest Client for Ecl 1/39 Balaji Krish,, IBM Nam LeIBM 2005 4 15 IBM Rational ClearQuest ClearQuest Eclipse Rational ClearQuest / Eclipse Clien Rational ClearQuest Rational ClearQuest Windows Web Rational ClearQuest Client

More information

UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 厦门大学博硕士论文摘要库

UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 厦门大学博硕士论文摘要库 10384 200128011 UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 2004 5 2004 2004 2004 5 World Wide Web Robot Web / (Focused Crawling) Web Meta data Web Web I

More information

ASP.NET MVC Visual Studio MVC MVC 範例 1-1 建立第一個 MVC 專案 Visual Studio MVC step 01 Visual Studio Web ASP.NET Web (.NET Framework) step 02 C:\M

ASP.NET MVC Visual Studio MVC MVC 範例 1-1 建立第一個 MVC 專案 Visual Studio MVC step 01 Visual Studio Web ASP.NET Web (.NET Framework) step 02 C:\M ASP.NET MVC Visual Studio 2017 1 1-4 MVC MVC 範例 1-1 建立第一個 MVC 專案 Visual Studio MVC step 01 Visual Studio Web ASP.NET Web (.NET Framework) step 02 C:\MvcExamples firstmvc MVC 1-7 ASP.NET MVC 1-9 ASP.NET

More information

(Microsoft Word - \272\364\263q\245|\244A_49636107_\304\254\253\330\336\263__\272\353\302\262\263\370\247i.doc)

(Microsoft Word - \272\364\263q\245|\244A_49636107_\304\254\253\330\336\263__\272\353\302\262\263\370\247i.doc) SCJP (Oracle Certified Professional, Java SE5/6 Programmer) 學 制 / 班 級 : 四 年 制 / 網 通 四 乙 指 導 老 師 : 方 信 普 老 師 學 生 學 號 / 姓 名 : 49636107 蘇 建 瑋 繳 交 年 份 : 100 年 6 月 一 SCJP 介 紹 SCJP 是 Sun Certified Java Programmer

More information

final

final 行 政 院 研 究 發 展 考 核 委 員 會 政 府 網 站 建 置 及 營 運 作 業 參 考 指 引 中 華 民 國 99 年 2 月 政 府 網 站 建 置 及 營 運 作 業 參 考 指 引 目 次 前 言 與 導 讀... 1 一. 緣 由... 1 二. 現 行 規 範 應 用 的 運 作 與 問 題... 1 三. 政 府 網 站 建 置 與 營 運 作 業 參 考 指 引 之 規

More information

無障礙網頁開發規範二版(草案)

無障礙網頁開發規範二版(草案) 國 家 通 訊 傳 播 委 員 會 無 障 礙 網 頁 開 發 規 範 2.0 版 ( 草 案 ) 委 辦 單 位 : 國 家 通 訊 傳 播 委 員 會 執 行 單 位 : 中 華 民 國 資 訊 軟 體 協 會 中 華 民 國 1 0 3 年 0 5 月 I II 目 錄 壹 前 言... 1 貳 適 用 範 圍... 2 參 用 語 釋 義... 3 肆 規 範 內 文... 14 一 規 範

More information

Microsoft Word - 苹果脚本跟我学.doc

Microsoft Word - 苹果脚本跟我学.doc AppleScript for Absolute Starters 2 2 3 0 5 1 6 2 10 3 I 13 4 15 5 17 6 list 20 7 record 27 8 II 32 9 34 10 36 11 44 12 46 13 51 14 handler 57 15 62 63 3 AppleScript AppleScript AppleScript AppleScript

More information

jdbc:hsqldb:hsql: jdbc:hsqldb:hsqls: jdbc:hsqldb:http: jdbc:hsqldb:https: //localhost //192.0.0.10:9500 / /dbserver.somedomain.com /an_alias /enrollme

jdbc:hsqldb:hsql: jdbc:hsqldb:hsqls: jdbc:hsqldb:http: jdbc:hsqldb:https: //localhost //192.0.0.10:9500 / /dbserver.somedomain.com /an_alias /enrollme sh -x path/to/hsqldb start > /tmp/hstart.log 2>&1 第 4 章 高 级 话 题 4.1 本 章 目 的 许 多 在 论 坛 或 邮 件 组 中 重 复 出 现 的 问 题 将 会 在 本 文 档 中 进 行 解 答 如 果 你 打 算 在 应 用 程 序 中 使 用 HSQLDB 的 话, 那 么 你 应 该 好 好 阅 读 一 下 本 文 章 本 章

More information

使用Cassandra和Spark 2.0实现Rest API服务

使用Cassandra和Spark 2.0实现Rest API服务 使用 Cassandra 和 Spark 2.0 实现 Rest API 服务 在这篇文章中, 我将介绍如何在 Spark 中使用 Akkahttp 并结合 Cassandra 实现 REST 服务, 在这个系统中 Cassandra 用于数据的存储 我们已经见识到 Spark 的威力, 如果和 Cassandra 正确地结合可以实现更强大的系统 我们先创建一个 build.sbt 文件, 内容如下

More information

B 6 A A N A S A +V B B B +V 2

B 6 A A N A S A +V B B B +V 2 B 6 A A N A S A +V B B B +V 2 V A A B B 3 C Vcc FT7 B B 1 C 1 V cc C 2 B 2 G G B 3 C 3V cc C B ND ND GND V A A B B C 1 C 3 C 2 C V cc V cc V 220Ωx B 1 B 2 B 3 B GND GND A B A B 1 1 0 0 0 2 0 1 0 0 3 0

More information

使用SQL Developer

使用SQL Developer 使 用 SQL Developer 达 成 的 目 标 / 方 案 1 创 建 一 个 新 的 数 据 库 连 接 ; 2 在 SQL Developer 中 查 看 数 据 库 对 象 的 信 息 修 改 数 据 ; 3 在 SQL Developer 中 创 建 表 ; 4 在 SQL Developer 中 创 建 索 引 ; 5 在 SQL Developer 中 创 建 函 数 ; 6 在

More information

(Microsoft Word - \245\274\244\300\246\250\301Z\260\252\247C13.doc)

(Microsoft Word - \245\274\244\300\246\250\301Z\260\252\247C13.doc) VHDL 實 習 報 告 四 資 工 二 指 導 教 授 : 徐 演 政 學 生 : 廖 雅 竹 B9515010 陳 緯 琪 B9515044 敗 LED 史 上 無 敵 超 級 賭 骰 子 模 擬 機 以 廖 雅 竹 陳 緯 琪 Project Title: 骰 硬 件 啟 動 後, 可 以 明 顯 的 觀 察 到 實 驗 板 上 方 的 兩 個 骰 子 器 高 速 地 跳 動 Participants:

More information

數位圖書館/博物館相關標準 2

數位圖書館/博物館相關標準 2 數 2 立 XML (Extensibility) XML 行 (Self-description) (Structure) XML (Validation) XML DTD 行 XML 列 XML-Language SGML without tears Self-describing Documents Well-formed and Valid Documents XML-Link Power

More information

untitled

untitled Velocity 14 100061 315@pptph.com.cn http://www.pptph.com.cn 010-67129212 010-67129211 787 1092 1/16 22 535 1 0 000 2001 11 1 2001 11 1 ISBN 7-115-09828-X/TP 2577 32.00 01067129223 1 2 1 2 3 4 5 1 Velocity

More information

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 WWW PHP 2003 1 Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 Comments PHP Shell Style: # C++ Style: // C Style: /* */ $value = $p * exp($r * $t); # $value

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

Microsoft Word - PHP7Ch01.docx

Microsoft Word - PHP7Ch01.docx PHP 01 1-6 PHP PHP HTML HTML PHP CSSJavaScript PHP PHP 1-6-1 PHP HTML PHP HTML 1. Notepad++ \ch01\hello.php 01: 02: 03: 04: 05: PHP 06:

More information

内 容 协 作 平 台 TRS WCM 6.5 北 京 拓 尔 思 信 息 技 术 股 份 有 限 公 司 Beijing TRS Information Technology Co., Ltd 版 权 说 明 本 手 册 由 北 京 拓 尔 思 信 息 技 术 股 份 有 限 公 司 ( 以 下 简 称 TRS 公 司 ) 出 版, 版 权 属 TRS 公 司 所 有 未 经 出 版 者 正 式

More information

1. 2. Flex Adobe 3.

1. 2. Flex Adobe 3. 1. 2. Flex Adobe 3. Flex Adobe Flex Flex Web Flex Flex Flex Adobe Flash Player 9 /rich Internet applications/ria Flex 1. 2. 3. 4. 5. 6. SWF Flash Player Flex 1. Flex framework Adobe Flex 2 framework RIA

More information

Chapter 9: Objects and Classes

Chapter 9: Objects and Classes Java application Java main applet Web applet Runnable Thread CPU Thread 1 Thread 2 Thread 3 CUP Thread 1 Thread 2 Thread 3 ,,. (new) Thread (runnable) start( ) CPU (running) run ( ) blocked CPU sleep(

More information

Java java.lang.math Java Java.util.Random : ArithmeticException int zero = 0; try { int i= 72 / zero ; }catch (ArithmeticException e ) { // } 0,

Java java.lang.math Java Java.util.Random : ArithmeticException int zero = 0; try { int i= 72 / zero ; }catch (ArithmeticException e ) { // } 0, http://debut.cis.nctu.edu.tw/~chi Java java.lang.math Java Java.util.Random : ArithmeticException int zero = 0; try { int i= 72 / zero ; }catch (ArithmeticException e ) { // } 0, : POSITIVE_INFINITY NEGATIVE_INFINITY

More information

一 個 SQL Injection 實 例 的 啟 示 頁 2 / 6 因 此, 在 知 名 網 站 上 看 到 SQL Injection, 讓 人 驚 心, 卻 不 意 外 網 站 專 案 外 包 是 目 前 業 界 的 常 態, 而 在 價 格 取 勝 的 制 度 下, 低 價 得 標 的 S

一 個 SQL Injection 實 例 的 啟 示 頁 2 / 6 因 此, 在 知 名 網 站 上 看 到 SQL Injection, 讓 人 驚 心, 卻 不 意 外 網 站 專 案 外 包 是 目 前 業 界 的 常 態, 而 在 價 格 取 勝 的 制 度 下, 低 價 得 標 的 S 一 個 SQL Injection 實 例 的 啟 示 頁 1 / 6 你 的 網 站 在 裸 奔 嗎? 一 個 SQL Injection 實 例 的 啟 示 作 者 : 李 明 儒 SQL Injection( 資 料 隱 碼 攻 擊 ) 問 題 早 就 不 是 什 麼 新 聞, 但 前 陣 子 在 一 個 頗 具 知 名 度 的 活 動 網 站 上, 赫 然 發 現 它 大 刺 刺 地 現 身!

More information