1
我需要從android中的sharedPreference文件獲取值。該文件的XML看起來是這樣的:xmllint如何閱讀具有android sharedpreferences值的xml文件
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<boolean name="apples" value="true" />
<boolean name="grapes" value="true" />
<boolean name="oranges" value="true" />
</map>
和文件名是fruits.xml
如何,我可以使用xmllint在shell腳本來檢索葡萄的價值?
我試過xmllint fruits.xml
然後xmllint xpath map/grapes
但它不工作。我希望最終的結果是「真實的」,因爲這是葡萄的價值。
'map/boolean [@ name =「grapes」]/@ value' – splash58