Time of Update: 2017-01-13
jsp教程 學產生績管理系統代碼import java.util.*;import java.io.IOException;import java.io.*;class student{int no;String name;double chengji;public student(){};public student(int no,String name,double
Time of Update: 2017-01-13
注入法: 從理論上說,認證網頁中會有型如: select * from admin where username=’XXX’ and password=’YYY’ 的語句,若在正式運行此句之前,如果沒有進行必要的字元過濾,則很容易實施SQL注入。 如在使用者名稱文字框內輸入:abc’ or 1=1--&
Time of Update: 2017-01-13
jsp 郵件群發 程式碼public static boolean sendMail(String subject,String body,String to,String content,Address[] ValidUnsentAddresses,boolean isReSend) { logger.info("始發送郵件*"); boolean result=false; try {
Time of Update: 2017-01-13
3.JavaMail的常用類介紹事先說明:沒用過JavaMail的人可能看不懂這些介紹,不過不要緊,後面的文章有具體的執行個體,到時也可倒回來查看這些類的用法.(1) javax.mail.Properties類 JavaMail需要Properties來建立一個session對象。它將尋找字串"mail.smtp.host",屬性值就是發送郵件的主機.用法: Properties props = new Properties ();
Time of Update: 2017-01-13
jsp分頁程式碼<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %><%@include file ="../inc/ChkPwd.jsp"%><%@include file="../DB.jsp"%&
Time of Update: 2017-01-13
一、 <HTML> <BODY> <FORM action="sendmail.jsp" method="post"> <TABLE align="center"> <TR> <TD width="50%"> To:<BR><INPUT name="to" size="25"> </TD> <TD width="5
Time of Update: 2017-01-13
電子郵件(E-mail)是Internet上使用最廣泛的服務之一,傳統的Email應用模式基於C/S結構,即使用者使用用戶端的郵件收發工具(如Outlook、Foxmail等)與提供郵件服務的伺服器(如163.net、263.net、371.net)通訊,在使用用戶端郵件工具之前,使用者要進行一些必要的設定,如指定郵件伺服器的主機地址和通訊連接埠等,這些工作對剛開始上網的使用者會有一定的困難,如果把E-mail和Web結合在一起,即通過Web編程和適當的系統設定,使使用者僅僅以訪問Web的方式就
Time of Update: 2017-01-13
本文只討論如何在Windows NT 4.0上安裝Apache+Servlet+jsp。本文中的配置情況如下: Windows NT 4.0 jdk1_2_2-001-win.exe apache_1_3_12_win32.exe ApacheModuleJServ.dll tomcat.zip(3.0)一、軟體下載 JDK http://java.sun.com/products/jdk/1.2/ Apache
Time of Update: 2017-01-13
其中的opDb.java ============================================ package ymbean; import java.sql.*; import java.util.*; import java.text.*; import com.chinazjj.sql.dsql; import com.chinazjj.util.dutil; //其他的包dsql,dutil中的內容我就不再貼了,在本檔案中用到的兩個函數都很簡 單 public
Time of Update: 2017-01-13
weblogic的jsp問題解決方案 在做項目的時候,jsp在啟動並執行時候出現了一些問題,現將我的問題解決方案做一個小結,供以後作項目的參考。問題1:weblogic 的資料庫連接數目在程式運行中不斷增長,最後串連數目超過最大數,導致weblogic服務關閉原因:在操作完資料庫後,沒有關閉資料庫連接;或者是返回結果集(Resultset),而無法在jsp中關閉資料庫連接。解決方案:1. 在操作完資料庫要關閉資料庫連接。2. 盡量不要返回結果集Resultset,
Time of Update: 2017-01-13
reply.jsp ==================================== <html><head> <META content="text/html; charset=gb2312 " http-equiv=Content-Type> <title>張家界電話黃頁(網上114)</title></head> <style type="text/css">
Time of Update: 2017-01-13
guestbook.jsp =========================== <html><head> <META content="text/html; charset=gb2312 " http-equiv=Content-Type> <title>張家界電話黃頁(網上114)</title></head> <style type="text/css"> <
Time of Update: 2017-01-13
jsp教程到a url時中文出現亂碼先在jsp編碼,再在action中解碼encodeURI(encodeURI("中文"))編碼URLDecoder.decode(request.getParameter("參數名"),"UTF-8");完成解碼。例如: url:"qtypenums.action?typeid=<s:property value='typeid' escape='false'/
Time of Update: 2017-01-13
轉碼:a.href="./showCont.jsp?tcontent="+encodeURI(encodeURI(tcontent));解碼:java.net.URLDecoder.decode((String)request.getParameter("tcontent"), "UTF-8");例a.jsp原始碼 代碼如下複製代碼 <%@ page contentType="text/html;
Time of Update: 2017-01-13
JSP上傳檔案到伺服器的範例1.需要一個html檔案upload.html(內容如下) 代碼如下複製代碼 <html> <head> <title>Upload</title> </head>
Time of Update: 2017-01-13
fckeditor在jsp教程檔案上傳失敗解決方案My Code如下web.xml<servlet><servlet-name>connector</servlet-name><servlet-class>net.fckeditor.connector.connectorservlet</servlet-class><load-on-startup>1</load-on-startup></servlet&
Time of Update: 2017-01-18
jsp的登入校正Demopart_1:login.jsp:登入頁面:<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" +
Time of Update: 2017-01-18
在jstl裡面有fn:contains(str,str)這樣的方法來判斷字串是否包含另一個字串,可是沒有判斷list是否包含string的方法,所以就自己寫了一個方法contains.tag:<%@ tag import="java.util.List" %><%@ tag import="org.apache.commons.lang3.StringUtils" %><%@ tag import="java.util.Arrays" %><%@tag
Time of Update: 2017-01-18
JSTL標籤提供了對國際化(I18N)的支援,它可以根據發出請求的用戶端地區的不同來顯示不同的語言。同時還提供了格式化資料和日期的方法。實現這些功能需要I18N格式標籤庫(I18N-capable formation tags liberary)。引入該標籤庫的方法為:<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>I18N格式標籤庫提供了11個標籤,這些
Time of Update: 2017-01-18
在各個常用的web網站中,經常會發現這樣一個功能:當一個頁面出錯後,會自動跳轉到一個頁面上進行錯誤資訊的提示。 想要完成錯誤頁的操作,則一定要滿足兩個條件: 1、指定錯誤出現時的跳轉頁,通過errorPage屬性指定; 2、錯誤處理頁必須有明確的標識,通過isErrorPage屬性指定。下面就是錯誤頁:errorPage.jsp代碼如下:<%@ page language="java" import="java.util.*"