@test//1基礎語法演示-基本取值
//取出root中的屬性值
public
void fun2() throws
exception
@test//1 ognl語法演示-基本取值
//取出context中屬性的值
public
void fun3() throws
exception
//2 ognl基本語法-賦值
@test
public
void fun4() throws
exception
//3 ognl基本語法-呼叫方法
@test
public
void fun5() throws
exception
//4 ognl基本語法--->呼叫靜態方法
@test
public
void fun6() throws
exception
//5 ognl基本語法--->建立物件(list,map)
@test
public
void fun7() throws
exception.size()", oc, oc.getroot());
string name = (string)ognl.getvalue("[0]", oc, oc.getroot());
string name1 = (string)ognl.getvalue(".get(1)", oc, oc.getroot());
//建立map物件
integer mapsize = (integer)ognl.getvalue("#.size", oc, oc.getroot());
string mapname = (string)ognl.getvalue("#['name']", oc, oc.getroot());
integer mapage = (integer)ognl.getvalue("#.get('age')", oc, oc.getroot());
system.out.println(mapsize);
system.out.println(mapname);
system.out.println(mapage);
}
//6 ognl基本語法====>使用字串的已有方法
@test
public
void fun8() throws
exception
05 資料的基本語法 Record
00.操作表中的資料,對資料進行增,刪,改,查 01.增,向表中新增資料,紀錄 輸入命令 insert employee values null,liu male seraphliu 126.com 108,1997 7 16 a,b a.employee表中有多少個字段,values後小括號內就應...
OGNL表示式的基本用法
s property的作用 匯入標籤庫 taglib uri struts tags prefix s 要想使用 ognl 表示式,需要借助 struts2 的標籤 屬性 value 取值是乙個ognl表示式。執行結果 此時瀏覽器不會有任何內容顯示 原因 這句話中有 ognlexpression 這...
go基本語法 golang基本語法
匯入包 import fmt import fmt os 函式外申明變數 var a int 函式內申明變數 a slice申明 slice本質是指向陣列的指標 var s int var s int make int,3 s make int,3 基於陣列建立slice a 3 int s a 3...