版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、unity3d網(wǎng)絡(luò)通信自己寫(xiě)的測(cè)試demo ,一個(gè)功能一個(gè)功能測(cè)試著做的, 沒(méi)有什么結(jié)構(gòu),湊合看吧。http協(xié)議,在手機(jī)平臺(tái),url必須必帶http:/ 頭。此腳本主要實(shí)現(xiàn)了分別用 pose和 get方式獲取天氣預(yù)報(bào)信息( xml格式)。解析 xml獲取網(wǎng)絡(luò)圖片獲取網(wǎng)絡(luò)圖片( base64格式)base64與 byte互轉(zhuǎn) byte 與 texture2d(圖片)互轉(zhuǎn)更多常用 webservice:using unityengine;using system.collections;using system.collections.generic;using system.xml;using
2、system.io;public class httpdemo : monobehaviourpublic string hostname = ""/ 城市天氣預(yù)報(bào)服務(wù)public string urlpath ="/webservices/weatherwebservice.asmx/getweatherbycityname"/獲得驗(yàn)證碼服務(wù)(直接獲得圖片) private string picturename = "/webservices/validatecodewebservice.asmx/cnvalidateimage?bystri
3、ng='picture'"/獲得驗(yàn)證碼服務(wù) (獲得圖片字節(jié)流)private string picturebytename = "/webservices/validatecodewebservice.asmx/cnvalidatebyte?bystring='picbyte'"private texture2d mpicture;private texture2d mpicturebyte;private texture2d mconvertpng; public string parameters = new string &q
4、uot;thecityname" ; private string xmlcontent = "null"public stringtestc = "null"void ongui()/ 顯示測(cè)試信息gui.label(new rect(100, 10, 1000, 38), testc);/ 表單傳值if (gui.button(new rect(10, 50, 100, 60), "post")postweatherbycityname("北京");gui.button(new rect(120, 8
5、0, 100 + getjindu() * 100, 20), (getjindu() * 100) + "%");/get傳值( android平臺(tái)不支持中文參數(shù))if(gui.button(new rect(10, 130, 100, 60), "get")getweatherbycityname("58367");/上gui.button(new rect(120, 150,海100 + getjindu() * 100, 20), (getjindu() * 100) + "%");/顯示讀取到的天氣預(yù)報(bào)原
6、始信息(xml格式)gui.label(new rect(10, 220, 380, 500), mcontent);/解析 xmlif (gui.button(new rect(500, 200, 120, 60), "analysisxml")xmlcontent = analysisxml(); gui.label(new rect(410, 220, 380, 500), xmlcontent);/下載網(wǎng)絡(luò)圖片if (gui.button(new rect(10,750, 80, 60), "downpic")downloadpicture(pi
7、cturename);gui.label(new rect(100, 760, 200, 200),mpicture);/ 下載網(wǎng)絡(luò)圖片( base64格式)if (gui.button(new rect(350, 750, 80, 60), "downpicbyte")downloadpicturebyte(picturebytename);gui.label(new rect(450, 760, 200, 200), mpicturebyte);public voidpostweatherbycityname(string str)/ 將參數(shù)集合封裝到dictionar
8、y集合方便傳值dictionary<string, string> dic = newdictionary<string, string>();/參數(shù)dic.add(parameters0, str);startcoroutine(post(hostname + urlpath , dic);public void getweatherbycityname(string str)/ 將參數(shù)集合封裝到dictionary集合方便傳值dictionary<string, string> dic = new dict
9、ionary<string, string>();/參數(shù)dic.add(parameters0, str);startcoroutine(get(hostname + urlpath , dic);/下載圖片public void downloadpicture(string picname)testc ="picurl = " + picname;startcoroutine(gettexture(hostname + picname);/下載圖片(字節(jié)流) public void downloadpicturebyte(string picn
10、ame)startcoroutine(gettexturebyte(hostname + picname);/*-helper-*/private float mjindu = 0;private string mcontent; public float getjindu()returnmjindu;/post請(qǐng)求 (form表單傳值、 效率低、安全, )ienumerator post(string url, dictionary<string, string> post)/ 表wwwform form = new wwwform();單/從集合中取出所有參數(shù),
11、設(shè)置表單參數(shù)(addfield().foreach (keyvaluepair<string, string> post_arg in post)form.addfield(post_arg.key, post_arg.value);/ 表單傳值,就是postwww www = new www(url, form);yield return www;mjindu = gress;if (www.error != null)/post請(qǐng)求失敗mcontent ="error :" +www.error;else/post請(qǐng)求成功mco
12、ntent = www.text;/get 請(qǐng)求( url? 傳值、效率高、不安全)ienumerator get(string url, dictionary<string, string> get)string parameters;bool first;if (get.count > 0)first = true; parameters = "?"/ 從集合中取出所有參數(shù), 設(shè)置表單參數(shù)(addfield().foreach (keyvaluepair<string, string> post_ar
13、g in get)if (first)first = false;elseparameters += "&"parameters+= post_arg.key + "=" +post_arg.value;elseparameters = ""testc ="geturl :" +parameters;/ 直接 url傳值就是getwww www = new www(url + parameters);yield return www;mjindu = gress;if (www.err
14、or != null)/get請(qǐng)求失敗mcontent = "error :" +www.error;else/get請(qǐng)求成功mcontent= www.text;ienumerator gettexture(string picurl)www wwwtexture = new www(picurl);yield return wwwtexture;if (wwwtexture.error != null)/get請(qǐng)求失敗debug.log("error :" + wwwtexture.error);else/get請(qǐng)求成功mpicture = wwwt
15、exture.texture; string picbyte;ienumerator gettexturebyte(string picurl)www www = new www(picurl);yield return www;if (www.error != null)/get請(qǐng)debug.log("error :" +求失敗www.error);else/get請(qǐng)求成功debug.log("picbytes text = " + www.text); xmldocument xmldoc = new xmldocument(); xmldoc.lo
16、ad(new stringreader(www.text);/通過(guò)索引查找子節(jié)點(diǎn)picbyte =xmldoc.getelementsbytagname("base64binary").item(0).innertext;testc = picbyte;mpicturebyte = bttetopic(picbyte);/解析 xmlstring analysisxml()string str = ""xmldocument xmldoc = new xmldocument();xmldoc.load(new stringreader(mcontent)
17、;/得到文檔根節(jié)點(diǎn)的所有子節(jié)點(diǎn)集合/xmlnodelist nodes = xmldoc.documentelement.childnodes;/ 通過(guò)節(jié)點(diǎn)名得到節(jié)點(diǎn)集合x(chóng)mlnodelist nodes =xmldoc.getelementsbytagname("string");/通過(guò)索引查找子節(jié)點(diǎn)str += "item1 = " + xmldoc.getelementsbytagname("string").item(1).innertext + "nn"/ 遍歷所有子節(jié)點(diǎn)foreach (xmleleme
18、nt element in nodes)if (element.name = "string")str += element.innertext + "n"return str;/ 圖片與 byte 互轉(zhuǎn)public void convertpng(texture2d pic)byte data = pic.encodetopng();debug.log("data =" + data.length + "|" + data0);mconvertpng = new texture2d(200, 200);mconvertpng.loadimage(data);/byte與 base64互轉(zhuǎn)tex
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 商業(yè)培訓(xùn)中的團(tuán)隊(duì)凝聚力培養(yǎng)與音樂(lè)游戲
- 商業(yè)思維在學(xué)生時(shí)間管理中的應(yīng)用
- 2025中國(guó)航天科工集團(tuán)第十研究院校園招聘593人高頻重點(diǎn)提升(共500題)附帶答案詳解
- 2025中國(guó)科學(xué)院紫金山天文臺(tái)人才公開(kāi)招聘6人(江蘇南京市第2期)高頻重點(diǎn)提升(共500題)附帶答案詳解
- 2025中國(guó)石化江蘇油田分公司畢業(yè)生招聘10人高頻重點(diǎn)提升(共500題)附帶答案詳解
- 2025中國(guó)電信股份限公司數(shù)字智能科技分公司社會(huì)招聘21人高頻重點(diǎn)提升(共500題)附帶答案詳解
- 2025中國(guó)電信安全公司社會(huì)招聘高頻重點(diǎn)提升(共500題)附帶答案詳解
- 2025中國(guó)核工業(yè)集團(tuán)限公司校園招聘7000人高頻重點(diǎn)提升(共500題)附帶答案詳解
- 2025中國(guó)兵器裝備集團(tuán)限公司總部招聘5人(北京)高頻重點(diǎn)提升(共500題)附帶答案詳解
- 2025中化學(xué)國(guó)際工程限公司招聘32人高頻重點(diǎn)提升(共500題)附帶答案詳解
- 幼兒園大班安全《防性侵警報(bào)》微課件
- 三年級(jí)上冊(cè)《貴州省生態(tài)文明城市建設(shè)讀本》小學(xué)中年級(jí)版教案
- 小區(qū)新型光纖分布系統(tǒng)施工方案小區(qū)光纖入戶施工方案
- 國(guó)家安全教育學(xué)習(xí)通超星期末考試答案章節(jié)答案2024年
- 變壓器巡視課件
- 中國(guó)重癥患者腸外營(yíng)養(yǎng)治療臨床實(shí)踐專(zhuān)家共識(shí)(2024)解讀
- 精益生產(chǎn)篇(培訓(xùn)資料)
- 河南省鄭州市鄭東新區(qū)2023-2024學(xué)年六年級(jí)上學(xué)期期末學(xué)情調(diào)研數(shù)學(xué)試題
- 產(chǎn)品檢驗(yàn)合格證模板
- 2024年全國(guó)職業(yè)院校技能大賽中職組(安全保衛(wèi)賽項(xiàng))考試題庫(kù)(含答案)
- 浙江省建筑防水工程技術(shù)規(guī)程
評(píng)論
0/150
提交評(píng)論