0

我有这个代码。此代码不会在 Document 目录中创建文件,我不知道为什么。谁能看到我错过了什么。“数据”字典中有我需要的东西,但是当涉及到 writeToFile:它没有发生,因为没有创建文件。我拥有的其他应用程序中也可以使用相同的代码,我肯定会遗漏一些东西。

- (void)addBookmark{

NSFileManager *fileManager = [NSFileManager defaultManager];

    if (![fileManager fileExistsAtPath: [self filePathOfBookmarks]]) 
    {
        [self filePathOfBookmarks];
    }

    NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile: [self filePathOfBookmarks]];



    if ([fileManager fileExistsAtPath: [self filePathOfBookmarks]]) 
    {
        data = [[NSMutableDictionary alloc] initWithContentsOfFile: [self filePathOfBookmarks]];
    }
    else
    {
        // If the file doesn’t exist, create an empty dictionary
        data = [[NSMutableDictionary alloc] init];
    }


    NSMutableDictionary *firstOne = [NSMutableDictionary dictionary];
    [firstOne setObject:@"one" forKey:@"name"];
    [firstOne setObject:@"two" forKey:@"call"];
    [firstOne setObject:@"twoandhalf" forKey:@"email"];
    [firstOne setObject:@"four" forKey:@"description"];

    [data setObject:firstOne forKey:@"ID"];



   [data writeToFile: [self filePathOfBookmarks] atomically:YES];

    NSMutableDictionary *savedStock = [[NSMutableDictionary alloc] initWithContentsOfFile: [self filePathOfBookmarks]];
    NSLog(@"file content %@",savedStock);
}

- (NSString *) filePathOfBookmarks {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *docDirectory = [paths objectAtIndex:0];
    return [docDirectory stringByAppendingPathComponent:@"favourites"];
}

NSLog(@"%@",[self filePathOfBookmarks]);

这返回:

/Users/spire/Library/Application Support/iPhone Simulator/5.1/Applications/40CAA37F-6477-4101-A142-D4797748ABD9/Documents/favorites

4

2 回答 2

0

请参阅下面的代码,它在我这边运行良好。您刚刚在 filePathOfBookmarks 方法中提到了目录而不是确切的文件名。我可以将数据保存在 favourites.txt 文件中。

您还可以参考以下链接以获取有关 iOS 中文件处理的更多信息

1)文件保存-加载/使用文档目录存放文件

2) iPhone 文件系统

- (void)addBookmark{

    NSFileManager *fileManager = [NSFileManager defaultManager];

    if (![fileManager fileExistsAtPath: [self filePathOfBookmarks]]) 
    {
        [self filePathOfBookmarks];
    }

    NSMutableDictionary *data;// = [[NSMutableDictionary alloc] initWithContentsOfFile: [self filePathOfBookmarks]];



    if ([fileManager fileExistsAtPath: [self filePathOfBookmarks]]) 
    {
        data = [[NSMutableDictionary alloc] initWithContentsOfFile: [self filePathOfBookmarks]];
    }
    else
    {
        // If the file doesn’t exist, create an empty dictionary
        data = [[NSMutableDictionary alloc] init];
    }


    NSMutableDictionary *firstOne = [NSMutableDictionary dictionary];
    [firstOne setObject:@"one" forKey:@"name"];
    [firstOne setObject:@"two" forKey:@"call"];
    [firstOne setObject:@"twoandhalf" forKey:@"email"];
    [firstOne setObject:@"four" forKey:@"description"];

    [data setObject:firstOne forKey:@"ID"];



    [data writeToFile: [self filePathOfBookmarks] atomically:YES];

    NSMutableDictionary *savedStock = [[NSMutableDictionary alloc] initWithContentsOfFile: [self filePathOfBookmarks]];
    NSLog(@"file content %@",savedStock);
}

- (NSString *) filePathOfBookmarks {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *docDirectory = [paths objectAtIndex:0];
    return [docDirectory stringByAppendingPathComponent:@"favourites.txt"];
}
于 2012-04-05T09:42:57.150 回答
0

你的一些代码没有意义(对我来说)。

这没有任何作用:

if (![fileManager fileExistsAtPath: [self filePathOfBookmarks]]) 
{
    [self filePathOfBookmarks];
}

然后你用你的书签文件内容初始化你的数据对象——此时文件可能不存在:

NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile: [self filePathOfBookmarks]];

您可以简单地省略上述两个代码块,因为您之后再次检查它:

if ([fileManager fileExistsAtPath: [self filePathOfBookmarks]]) 
{
    data = [[NSMutableDictionary alloc] initWithContentsOfFile: [self filePathOfBookmarks]];
}
else
{
    // If the file doesn’t exist, create an empty dictionary
    data = [[NSMutableDictionary alloc] init];
}

这是有道理的。但是,当您省略前两个代码块时,请确保声明数据对象:

NSMutableData *data;

然后将 firstOne 对象设置为数据字典。这似乎很好(尽管使用此代码,之前从现有书签文件加载的数据根本没有使用)。

编写数据字典似乎也不错:

[data writeToFile: [self filePathOfBookmarks] atomically:YES];

当然,您的方法 filePathOfBookmarks 返回一个有效的文件名。

然而,该方法返回一个目录,而不是一个文件。添加后缀,如下所示:

return [docDirectory stringByAppendingPathComponent:@"favorites.plist"];

使用检查文件路径的有效性

NSLog(@"%@",[self filePathOfBookmarks]);

在写入文件之前。

也试试

NSLog(@"%@",data);

在编写之前查看您的字典包含的内容。

如果还是不行,请重新发帖。

于 2012-04-05T09:51:08.750 回答