獲取一些全域性變數的方法。

2021-09-01 21:14:28 字數 779 閱讀 5239

//獲取全域性session

mapsession = (map) actioncontext.getcontext().getsession();

//從session中拿到登陸使用者資訊

admin admin = (admin) session.get("sessionoperator");

servletcontext context = servletactioncontext.getservletcontext();

//得到某個資料夾在專案的位址路徑

string realpath = context.getrealpath("//page/js");

//realpath="d:\fortunerms5\02_source\web\page\js";

//讀取配置檔案的資訊

//shouldcopyposter = true;

boolean shouldcopyposter = config.getboolconfig("importxml.default.copyposter", true);

//獲取全域性requst

//獲取客戶端版本資訊

string useragent = request.getheader("user-agent");

全域性變數的一些注意

源自csdn的帖子裡面的內容,目前在用全域性變數,但還沒有出錯,留個記號,已備以後使用。現在貼上主要 c c code pragma data seg shared hhook g hook null hwnd g hwnd null log loguser critical section sec...

python全域性變數的一些思考

問題的引出 x 5def func x x print x func 報錯資訊 traceback most recent call last file new 2.py line 5,in func file new 2.py line 3,in func x x unboundlocalerro...

關於全域性變數,區域性變數的一些看法!!!

1,全域性變數,和區域性變數的生存週期咋樣呢,儲存位置呢?2,假如全域性變數和區域性變數定義賦值都是一樣的,那麼printf函式裡呼叫變數會出現什麼結果?把區域性變數去掉呢?3,對於乙個c c 程式而言,全域性變數真的只是定義在所有函式之外就ok的嗎?假如某乙個全域性變數定義在最底部,那麼上面的那些...