получить полный список текста в изолированном хранилище Windows Phone 7 - PullRequest
1 голос
/ 26 июня 2011

Я пытаюсь получить несколько изображений и текста с помощью привязки данных, но мне удается получить только первый текст в изолированном хранилище (код ниже).

Можно ли получить несколько текстов с помощью привязки данных в ListBox?

string imageFileName = App.imagePath;

string a;

object b;
sting h;

int i;
string noteSeparate;

private void Library_Loaded(object sender, RoutedEventArgs e)
{


    if (MainListBox.Items.Count == 0)
    {

        //To save the separated note by '^'
        string[] noteSeparated;
        //Read the file and display it line by line.
        IsolatedStorageFile myStore = IsolatedStorageFile.GetUserStoreForApplication();
        //Read the note saved in myFile.txt
        StreamReader readFile = new StreamReader(new IsolatedStorageFileStream("ViewFolder\\myFile.txt", FileMode.Open, myStore));

            try
            {

                String fileText = readFile.ReadLine();
                //noteSeparated is the variable that save the retrieve note from myFile.txt and is noteSeparated by '^'
                noteSeparated = fileText.Split(new char[] { '^' });

                for (i = 0; i < noteSeparated.Length; i = i + 3)
                {
                  noteSeparate = noteSeparated[i];
                  a = noteSeparate;
                  break;
                }

                h = a;
                readFile.Close();

            }
            catch (Exception)
            {
                noNoteBlock.Visibility = Visibility.Visible;
            }
        }

        string imageFolder = "imageFolder";

        var isoFile = IsolatedStorageFile.GetUserStoreForApplication();
        // Check if directory exists
        if (!isoFile.DirectoryExists(imageFolder))
        {
            //isoFile.CreateDirectory(imageFolder);
            throw new Exception("Image directory not found");
        }

        ObservableCollection<Items> LibraryItems = new ObservableCollection<Items>();
        // Get files
        foreach (string fileName in isoFile.GetFileNames())
        {
            //string filePath = Path.Combine(imageFolder, imageFileName);
            string filePath = Path.Combine(imageFolder, fileName);
            using (var imageStream = isoFile.OpenFile(filePath, FileMode.Open, FileAccess.Read))
            {
                var imageSource = PictureDecoder.DecodeJpeg(imageStream);

                BitmapImage bi = new BitmapImage();

                ListBoxItem item = new ListBoxItem();
                bi.SetSource(imageStream);
                item.Content = new Image() { Source = bi, MaxHeight = 100, MaxWidth = 100, Margin = new Thickness(0, 0, 0, 20) };
                //MainListBox.Items.Add(item);
                b = bi;

            }
            LibraryItems.Add(new Items(b, h));
            MainListBox.ItemsSource = LibraryItems;
        }
}

Может ли кто-нибудь помочь мне восстановить весь текст, сохраненный в изолированном хранилище. Текст в изолированном файле имеет формат "noteTitle ^ note ^ imagePath ^ noteTitle ^ note ^ imagePath ^ ...." и т. Д. Я пытаюсь получить только все примечания.

Может ли кто-нибудь помочь мне получить все noteTitle только ?

1 Ответ

0 голосов
/ 26 июня 2011

С Regex:

using (var streamReader = new StreamReader(new IsolatedStorageFileStream("ViewFolder\\myFile.txt", FileMode.Open, myStore)))
{
    var text = streamReader.ReadToEnd();
    var titles = Regex.Matches(text, @"(?<title>[^\^]+)\^(?<note>[^\^]+)\^(?<imagePath>[^\^]+)")
        .Cast<Match>()
        .Select(arg => arg.Groups["title"])
        .ToList();
}

или с Split

using (var streamReader = new StreamReader(new IsolatedStorageFileStream("ViewFolder\\myFile.txt", FileMode.Open, myStore)))
{
    var text = streamReader.ReadToEnd();
    var i = 0;
    var titles = text.Split('^').Where(arg => i++ % 3 == 0).ToList();
}

[РЕДАКТИРОВАТЬ] Чтобы связать список с ListBox:

private void Library_Loaded(object sender, RoutedEventArgs e)
{
    using (var streamReader = new StreamReader(new IsolatedStorageFileStream("ViewFolder\\myFile.txt", FileMode.Open, myStore)))
    {
        var text = streamReader.ReadToEnd();
        var i = 0;
        MainListBox.ItemsSource = text.Split('^').Where(arg => i++ % 3 == 0).ToList();
    }
}

[РЕДАКТИРОВАТЬ]

Заменить этот код:

String fileText = readFile.ReadLine();
//noteSeparated is the variable that save the retrieve note from myFile.txt and is noteSeparated by '^'
noteSeparated = fileText.Split(new char[] { '^' });
for (i = 0; i < noteSeparated.Length; i = i + 3)
{
    noteSeparate = noteSeparated[i];
    a = noteSeparate;
    break;
}
h = a;

на:

var fileText = readFile.ReadToEnd();
var i = 0;
var titles = fileText .Split('^').Where(arg => i++ % 3 == 0).ToList();

titles будет список notTitle.

...