ローカル ファイル (.txt) から解析したいのですが、これが得られます。誰でも助けることができますか?
Visual Studio 2012 を使用し、Grid テンプレートを使用して win8 アプリを作成します。
mscorlib.dll で 'System.Exception' 型の未処理の例外が発生しました
WinRT 情報: 位置 1063 に無効な文字があります。
追加情報: JSON 文字列が無効です。
アプリ.xaml.cs:
protected override async void OnLaunched(LaunchActivatedEventArgs args)
{
Frame rootFrame = Window.Current.Content as Frame;
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
//Associate the frame with a SuspensionManager key
SuspensionManager.RegisterFrame(rootFrame, "AppFrame");
if (args.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
// Restore the saved session state only when appropriate
try
{
await SuspensionManager.RestoreAsync();
}
catch (SuspensionManagerException)
{
}
}
if (args.PreviousExecutionState == ApplicationExecutionState.Running)
{
Window.Current.Activate();
}
await VitsitDataSource.LoadLocalDataAsync();
Window.Current.Content = rootFrame;
}
if (rootFrame.Content == null)
{
if (!rootFrame.Navigate(typeof(GroupedItemsPage), "AllGroups"))
{
throw new Exception("Failed to create initial page");
}
}
// Ensure the current window is active
Window.Current.Activate();
}