string indata = "mailto:[email protected]&password=我的密碼&x=45&y=15";
mystreamwriter.close();
myrequeststream.close(); //關閉開啟物件
httpwebresponse myhttpwebresponse = (httpwebresponse)myhttpwebrequest.getresponse(); //新建乙個httpwebresponse
myhttpwebresponse.cookies = mycookiecontainer.getcookies(myhttpwebrequest.requesturi); //獲取乙個包含url的cookie集合的cookiecollection
string outdata = mystreamreader.readtoend();//把資料從httpwebresponse的response流中讀出
mystreamreader.close();
myresponsestream.close();
顯示"登入"
//拿到了cookie,再進行請求就能直接讀取到登入後的內容了
//剛才那個cookiecontainer已經存有了cookie,把它附加到httpwebrequest中則能直接通過驗證
//再次顯示"登入"
//如果把*行注釋調,就顯示"沒有登入"
string abc = outdata.substring(413, outdata.length - 413 - 11); //.replace("title", "tag")
// abc = regex.replace(abc,".*?" , "");//"title=\".*?\"|title='.*?'|"
match mc = regex.match(abc, ".*?/table>");//.*?
regex.matches(abc, ".*?/table>")[0].value
abc = regex.replace(mc.value, ".*?thead>", "");
// matchcollection results
xmldocument xmldoc = new xmldocument();
xmldoc.loadxml(abc );
xmlnode xn = xmldoc.selectsinglenode("table");
xmlelement xe = (xmlelement)xn;
string result = xe.innertext;
登陸mysql s MySQL登陸退出
單例項登陸mysql mysql mysql uroot 適合剛安裝後無密碼 mysql uroot p 標準登陸的方法 mysql uroot p password 密碼明文會洩露密碼,一般用於指令碼中,指令碼許可權root 700 多例項登陸mysql mysql s data 3307 mys...
ubuntu root 使用者登陸登陸辦法
習慣於圖形化操作的我們,不愛面對一堆的命令的操作,拿想要隨意操作所有東東,就想要提示登入的許可權 以root使用者登入就可以。但是,ubuntu預設並沒有以root使用者登入,so,我們需要做些配置,讓系統再啟動的時候直接以root使用者登入。ubuntu 12.04預設是不允許root登入的,在登...
單點登陸 單點登陸設計
1單點登入基本流程場景1 使用者未登入情況下訪問受限資源 例如 使用者在站點a 登入成功了,這時候使用者再去訪問站點 下的受限資源。private a.do 由於使用者在站點a登入了,那麼在 x.com 域下一定存在authid的cookie,並且redis中一定儲存了使用者的登入資訊。當使用者訪問...