因為是開發的問題所以刪掉了預設內容...
是這樣的,小弟這兩天遇到一個完全不解的問題
首先,小弟將App的設定檔放在xml裡,用以下程式碼讀取XML
string XML_PATH = Path.Combine(ApplicationData.Current.LocalFolder.Path,
"config.xml");
using (IsolatedStorageFileStream isf = new
IsolatedStorageFileStream(XML_PATH, FileMode.Open, isoStore))
{
ifvm.loadConfig(isf);
isf.Close();
isf.Dispose();
}
public void loadConfig(Stream str)
{
im.load(str);
}
public void load(Stream str)
{
try
{
config = XDocument.Load(str); //會錯在這裡
}
catch
{
throw new xmlException();
}
}
這樣的操作在主程式中都沒有問題,但當同樣的程式碼放到taskAgent做背景程式的時候
loadConfig裡面的 config = XDocument.Load(str); 就會發生XML讀取錯誤,代碼是
Data at the root level is invalid ,而這個錯誤的Line和Position都指在檔案結尾
我現在最不懂的是,為什麼我也都把stream給close了,
ScheduledActionService.LaunchForTest甚至安排在2分鐘後才啟動,但還是無法讀取XML
不知道有沒有前輩遇過類似的問題,可以給小弟一些建議... Orz