xml檔案
<?xml version="1.0" encoding="utf-8"?>
楊冪28
范冰冰23
解析的類**如下(xmlpullparser ):
// 獲取xml檔案
inputstream is = this.getassets().open("beauties.xml");
// 新建乙個xmlpullparser物件,並設定編碼
xmlpullparse***ctory parse***ctory = xmlpullparse***ctory.newinstance();
//define xmlparse xmlpullparser
xmlpullparser xpp = parse***ctory.newpullparser();
xpp.setinput(is,"utf-8");
int eventtype = xpp.geteventtype();// 獲取事件型別
// 判斷事件是否到最後
while(eventtype!=xmlpullparser.end_document)
else if (xpp.getname().equals("name")) else if (xpp.getname().equals("age"))
break;
// 判斷當前事件是否為標籤元素結束事件
case xmlpullparser.end_tag:
if (xpp.getname().equals("daxiongmei"))
break;
} // 進入下乙個元素並觸發相應事件
eventtype = xpp.next();
}
java通過Cookie實現sso
sso的流程 同域的情況 cookie的設定 cookie cookie new cookie sso sso login cookie.setpath response.addcookie cookie 同父域 cookie的設定 cookie cookie new cookie sso sso ...
java通過XPATH解析XML
日常開發過程中會遇到很多種xml檔案 source方面的解析 1 基於soap協議負載方式傳輸時伺服器會返回source,此時,需要將source解析成本地資料 jaxbcontext ctx jaxbcontext.newinstance user.class user物件 source resp...
java通過模板生成 word
最近專案要匯出world的報告,在網上查閱了下相關資料。發現使用模板方式比較適合我們的專案。為自己記錄下.1.建立word文件,並另存為xml格式.3.使用模板生成 word文件.這裡簡單說下另存為後的xml模板 我使用的是word2007.如果存在,模板中會有類似這樣語法 這裡要注意的是,id不能...