-2
//NSString *csvString = @"S.No,Task,Date,Time";
//NSArray *csvArray=[csvString componentsSeparatedByString:@","];
// Create .csv file and save in Documents Directory.

NSArray * csvArray = [[NSArray alloc] initWithObjects:@ "SNo"、@ "Task"、@ "Date"、@ "Time"、nil]; //NSFileManagerのインスタンスを作成します//NSFileManager* fileManager = [NSFileManager defaultManager];

//create an array and store result of our search for the documents directory in it
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

//create NSString object, that holds our exact path to the documents directory
NSString *documentsDirectory = [paths objectAtIndex:0];
NSLog(@"Document Dir: %@",documentsDirectory);

NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.csv", @"userdata"]]; //add our file to the path

// [fileManager createFileAtPath:fullPath contents:[csvString dataUsingEncoding:NSUTF8StringEncoding] attributes:nil]; //最後にパス(ファイル)を保存します

CHCSVWriter * csvWriter = [[CHCSVWriter alloc] initWithCSVFile:fullPath atomic:NO];
NSInteger numberOfColumns = 4;
for (NSInteger currentIndex = 0; currentIndex < [csvArray count]; currentIndex++) {
    id field = [csvArray objectAtIndex:currentIndex];
    [csvWriter writeField:field];
    if ((currentIndex % numberOfColumns) == (numberOfColumns - 1)) {
        [csvWriter writeLine];
    }
}
[csvWriter release];
4

1 に答える 1

0

CSVファイルは基本的にiPhoneの連絡先のバックアップを作成するために使用され、それはExcelファイルです。なぜCSVファイルを作成したいのですか。必要に応じて、CSVに従って配列を作成する必要があり、これについては研究を行う必要があります....ここでは、CSV ファイルにテキストを書き込み、ドキュメント ディレクトリに保存するためのコードを示します....

NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [path objectAtIndex:0];
NSString *FileName = [NSString stringWithFormat:@"%@/File.csv", documentsDirectory];
NSString *Content = [[NSString alloc] initWithFormat:@"%@", stringForCsv];
//stringForCsv is your string which you want to write in file.
[Content writeToFile:FileName atomically:NO encoding:NSStringEncodingConversionAllowLossy error:nil];

ありがとう!

于 2012-06-16T12:01:13.990 に答える