Time of Update: 2018-07-20
JSP頁面 When using the JSTL's expression language , the request parameters are made available in the implicit object param. This example demonstrates how to include the value of a request parameter from the query string or posted data
Time of Update: 2018-07-20
jsp中實現檔案下載 (一) 最簡單的方式是在網頁上做超級連結,如:<a href="music/abc.mp3">點擊下載</a>。 但是這樣伺服器上的目錄資源會直接暴露給終端使用者,會給網站帶來一些不 安全的因素。 因此可以採用其它方式實現下載,可以採用: 1、RequestDispatcher的方式進行;
Time of Update: 2018-07-20
JSP共有以下9種基本內建群組件 1、request對象 用戶端請求,此請求會包含來自GET/POST請求的參數通過它才能了 解到客戶的需求,然後做出響應。
Time of Update: 2018-07-20
jsp中表單頁面 <span style="font-size:12px;"><form action="<%= request.getContextPath() %>/DelectServlet" method=post> <tr> <th> 全選/反選<input type="checkbox" id="checkall"
Time of Update: 2018-07-20
往hidden域塞入特定的值傳往後台
Time of Update: 2018-07-20
web開發中異常資訊是很重的資訊,對開發人員是其相當重要的,對這些異常資訊進行轉換為使用者能理解的資訊就更重要了~ 在單純的JSP開發中,處理異常資訊一般使用web.xml來定義。 01 <error-page> 02 &
Time of Update: 2018-07-20
2012.09.10 02:52更新:這裡有一個更麻煩的例子,是自己剛學struts2時寫的,使用了ModelDriven<E>介面,感興趣的可以下載下來參考一下。 下載地址:http://download.csdn.net/detail/kaulctin/4559588 ---分割線--- 在Servlet中,參數傳遞依靠在request, session,
Time of Update: 2018-07-20
一、我們都知道在基於Spring的Application中,需要在web.xml中增加下面類似的配置資訊: <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <!-- Spring MVC Servlet -->
Time of Update: 2018-07-20
為了避免以後遇到HTTP 404錯誤時無從下手,決定把每一次遇到此類錯誤的解決方案寫下來,以備查詢。 由於沒配置struts2之前,都能正常訪問應用目錄下的檔案,配置之後訪問檔案都報404錯誤,所以確定是struts2配置錯誤,之後從網上尋找,發現很多人出現類似的錯誤,解決方案很多,有:
Time of Update: 2018-07-20
簡單總結一下: method=“get”時,<%String name=request.getParameter("name"); String output=new String(name.getBytes("ISO-8859-1"),"UTF-8"); %> <%=output%>
Time of Update: 2018-07-20
日曆: <%@page contentType="text/html;charset=GBK"%><%@page import="java.util.Calendar"%><%//@page errorPage="handleErrorPage.jsp"%> <div align=center style="position: absolute; top: 12%;
Time of Update: 2018-07-20
JSP的隱含對象:不需要new,就可以直接使用的一組對象。tomcat自動建立,只能使用在運算式指令碼<%= %>和普通指令碼<% %>中。
Time of Update: 2018-07-20
request是封裝client端(也就是使用者通過browser)提交的請求資料和屬性的對象。response是封裝web
Time of Update: 2018-07-20
最近在我的一個項目需要用一個日期外掛程式來顯示時間,在網上找了一下,最後決定使用My97DatePicker,顏色好看,布局也很合理,但是用的時候遇到很多問題,最大的問題有一下兩個: 在jsp檔案中無法匯入js檔案(My97DatePicker外掛程式只需要引入WdatePicker.js這一個檔案就ok) 可以匯入js檔案,但是卻無法匯入WdatePicker.js引用到的另一個js檔案:calendar.js 和
Time of Update: 2018-07-20
CalendarBean.java package red.star; import java.util.*; public class CalendarBean { String calendar = null; int year = 1,month = -1; public void setYear(int year) { this.year = year; } public int getYear() { return year; } public void setMonth(int
Time of Update: 2018-07-20
有兩種傳參方式 一、get方式: 這種方式將參數寫在url中,舉例來說,如果目標傳參頁面是target.jsp,那麼在url裡可以這麼寫: http://..../target.jsp? <Param1> = <value1> & <Param2> = <value2> &...
Time of Update: 2018-07-20
改了部分代碼,執行時突然遇到如題異常,百思不得其解,明明沒有動JSP和Servlet,怎麼突然報這個錯...
Time of Update: 2018-07-20
(一)擷取目前的目錄下的檔案和目錄 知識點 1 file對象的應用2 listFiles()方法3 isDirectory()方法,isFile()方法 判斷是否為目錄或是檔案4轉換字串方法toString(1)建立一個file對象dir,然後用listFiles()方法返回目前的目錄下所有檔案String path=request.getRealPath("/");File dir=new File(path);File file[]=dir.listFiles()
Time of Update: 2018-07-20
如果我可以將jsp動態網頁轉換成靜態頁面,那麼訪問的時候就不需要頻繁的訪問資料庫了。 jsp 顯示內容緩衝技巧 前段時間做自己社區的論壇,在jive 的基礎上做一個頁面顯示所有論壇的文章,可以稱 之為總版,模仿forum 類的介面做個superforum 並且實現cachable,不過因為這個頁面 重新整理量比較大,雖然被cache 了,我還是想辦法進行頁面的緩衝,感覺用jsp 產生的html 靜態內容當緩衝,頁面訪問速度應該有所提高。
Time of Update: 2018-07-20
1.自訂標籤類: javax.servlet.jsp.tagext.BodyTagSupport——匯入此包 public class SubNodesTag extends BodyTagSupport { /** * */ private static final long