+ (NSMutableArray *)transferByArray:(NSMutableArray *)specList {
NSInteger space = specList.count/401;
NSMutableArray *newList = [NSMutableArray array];
// 写csv
NSString *path = [YXG_FileTools pathByFileName:@"yxg401.csv" path:[YXG_FileTools pathByDirectoryName:@"yangxuguang003"]];
NSOutputStream *output = [[NSOutputStream alloc] initToFileAtPath:path append:YES];
[output open];
if (![output hasSpaceAvailable]) {
NSLog(@"❌没有空间");
}
NSInteger result = 0;
for (NSInteger i = 0; i < 401; i ++) {
float value = [specList[i*space] floatValue];
[newList addObject:@(value)];
// 写入csv
NSString *string = [NSString stringWithFormat:@"%ld,%@\n",380+i,specList[i*space]];
uint8_t buffer[2048];
memcpy(buffer, [string UTF8String], [string length]+1);
result = [output write:buffer maxLength: [string length]];
}
[output close];
return newList;
}
IOS 生成csv
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 前因:项目需要采集N*NNNN组数据。但是该网页是使用AJAX,POST请求获取得到数据的。一般通常GET请求的就...
- mysql数据库有一字段里的数据含有 "和,,见下图: 在生成csv文件时,会被分割为: 导致数据错位。 解决思...