版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
1、unity3d網(wǎng)絡(luò)通信自己寫的測試demo ,一個功能一個功能測試著做的, 沒有什么結(jié)構(gòu),湊合看吧。http協(xié)議,在手機平臺,url必須必帶http:/ 頭。此腳本主要實現(xiàn)了分別用 pose和 get方式獲取天氣預(yù)報信息( 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ù)報服務(wù)public string urlpath ="/webservices/weatherwebservice.asmx/getweatherbycityname"/獲得驗證碼服務(wù)(直接獲得圖片) private string picturename = "/webservices/validatecodewebservice.asmx/cnvalidateimage?bystri
3、ng='picture'"/獲得驗證碼服務(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()/ 顯示測試信息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平臺不支持中文參數(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ù)報原
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請求 (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請求失敗mcontent ="error :" +www.error;else/post請求成功mco
12、ntent = www.text;/get 請求( 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請求失敗mcontent = "error :" +www.error;else/get請求成功mcontent= www.text;ienumerator gettexture(string picurl)www wwwtexture = new www(picurl);yield return wwwtexture;if (wwwtexture.error != null)/get請求失敗debug.log("error :" + wwwtexture.error);else/get請求成功mpicture = wwwt
15、exture.texture; string picbyte;ienumerator gettexturebyte(string picurl)www www = new www(picurl);yield return www;if (www.error != null)/get請debug.log("error :" +求失敗www.error);else/get請求成功debug.log("picbytes text = " + www.text); xmldocument xmldoc = new xmldocument(); xmldoc.lo
16、ad(new stringreader(www.text);/通過索引查找子節(jié)點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é)點的所有子節(jié)點集合/xmlnodelist nodes = xmldoc.documentelement.childnodes;/ 通過節(jié)點名得到節(jié)點集合xmlnodelist nodes =xmldoc.getelementsbytagname("string");/通過索引查找子節(jié)點str += "item1 = " + xmldoc.getelementsbytagname("string").item(1).innertext + "nn"/ 遍歷所有子節(jié)點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. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 人教PEP版四年級英語下冊Recycle2第一課時教學(xué)課件完整版
- 《ECMO安裝及預(yù)充》課件
- 《抗生素分類與運用》課件
- 《護理臨床帶教指南》課件
- 《多肌腱末端病》課件
- 無機非金屬材料的主角-硅課件
- 新民用燃?xì)獾湫褪鹿拾咐治?安全培訓(xùn)課件
- 單位人力資源管理制度精彩匯編十篇
- 單位人力資源管理制度匯編匯編十篇
- 單位管理制度展示選集人事管理篇十篇
- 9.2溶解度(第2課時)-2024-2025學(xué)年九年級化學(xué)人教版(2024)下冊
- 安全知識考試題庫500題(含答案)
- 2024-2025學(xué)年上學(xué)期南京小學(xué)數(shù)學(xué)六年級期末模擬試卷
- 安徽省合肥市包河區(qū)2023-2024學(xué)年三年級上學(xué)期語文期末試卷
- 河北省保定市定興縣2023-2024學(xué)年一年級上學(xué)期期末調(diào)研數(shù)學(xué)試題(含答案)
- 2024版食源性疾病培訓(xùn)完整課件
- 2025年中國蛋糕行業(yè)市場規(guī)模及發(fā)展前景研究報告(智研咨詢發(fā)布)
- 護理組長年底述職報告
- 護理不良事件分析 課件
- 巨量引擎合同范本
- 糖尿病患者健康管理測試試題(三套題-有答案)
評論
0/150
提交評論