引用:
jsp頁面使用
生成乙個元素
生成乙個元素
"生成當前頁面的絕對路徑,意義不大
生成乙個元素
login
由struts-config.xml中的全域性**建立鏈結
在jsp頁面建立鏈結
由當前頁面的相對路徑建立鏈結
link to page
標籤uri部分
生成乙個
生成乙個
name:驗證formbean名稱,struts-config裡面定義的名稱
property:驗證formbean的屬性
depends:驗證規則的邏輯名稱
key:驗證提示資訊
resource:
true:來自資源檔案
false:直接設定
var:為變數傳遞引數
loginform需要繼承 validatorform
validator:
required,minlength,maxlength,mask:正規表示式,byte,short,integer,long,float,double,date,
intrange,floatrange,doublerange,creditcard,email,url
自定義驗證:驗證兩個字段是否相同
配置檔案:
secondproperty
password2
寫乙個類:
生成乙個元素來支援檔案上傳
jsp頁面,必須是enctype="multipart/form-data",乙個字都不能差
file:
formbean裡面form類新增屬性
private formfile file;
eg:formfile file=uploadform.getfile();
inputstream in=file.getinputstream();
string filename=file.getfilename();
int size=file.getfilesize();
//得到真實路徑
string path=super.servlet.getservletcontext().getrealpath("/upload");
outputstream out=new fileoutputstream(path+"\\"+filename);
byte buf=new byte[size];
in.read(buf);
out.write(buf);
in.close();
out.close();
解決驗證資訊中的中文亂碼問題
建立build.xml檔案
呼叫native2ascii.exe進行轉碼
**:
瀏覽器解析度自適配
主要用到的兩段 window.onresize function 檢測視窗尺寸變化 document.body.clientwidth 當前螢幕寬度 檢測變化 window.onresize function var mainele document.getelementbyid main func...
瀏覽器知識自問自答
webstorage又可以分為localstorege和sessionstorage localstorage和cookie異同 相同 針對乙個網域名稱,即在同乙個網域名稱下,會儲存相同的一段localstorage 區別 容量 localstorage的容量上限為5m,相對於cookie的4k大大...
瀏覽器 瀏覽器高效搜尋
一 常見場景 以場景的形式來說明 1 場景1 網路上查詢一本書的 指定文件型別 如pdf 如 搜尋關鍵字 c primer plus 的 pdf 版本 輸入 格式 關鍵字 空格 filetype pdf 例項 c primer plus中文版 filetype pdf關鍵字 filetype 2 場...