我是这个网站的新手。
我在vb.net中创建一个应用程序...基本上它是一种下载程序,每次打开应用程序时,它都会开始下载一个plist文件,其结构如下:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<Dict>
<Key> Value 1 </key>
<Dict>
<Key> downloadlink </key>
<String> http://mysite/file.zip </string>
</Dict>
<Key> Value 2 </ ey>
<Dict>
<Key> downloadlink </ key>
<String> http://mysite/file2.zip </string>
</Dict>
</Dict>
</Plist>
我想阅读plist文件的内容。我希望Value 1
和Value 2
包含在ComboBox
中,当Dim dlllink as String = Nothing
的值发生变化时,它会更改变量(ComboBox
),什么是在<string>
和</ string>
值中写的。我能怎么做?有人可以帮帮我吗?在此先感谢所有人!