1 if (!fgets(line, 512, fin)) 2 { 3 break; 4 } 5 6 char tCh[256] = {0}; 7 sscanf_s(line, "%[^,],%lf,%lf,%lf,%lf,%lf,%lf\n", tCh, 256, &ax, &ay, &az, &gx, &gy, &gz);
如上所示,使用sscanf_s解析line字符串,先读取行首的字符串,需要在字符串之后指定所能容纳的字符串大小,否则报错。使用sscanf则不会存在这个问题。
标签:log har 存在 div 解析 分析 报错 line 字符
1 if (!fgets(line, 512, fin)) 2 { 3 break; 4 } 5 6 char tCh[256] = {0}; 7 sscanf_s(line, "%[^,],%lf,%lf,%lf,%lf,%lf,%lf\n", tCh, 256, &ax, &ay, &az, &gx, &gy, &gz);
如上所示,使用sscanf_s解析line字符串,先读取行首的字符串,需要在字符串之后指定所能容纳的字符串大小,否则报错。使用sscanf则不会存在这个问题。
标签:log har 存在 div 解析 分析 报错 line 字符
原文地址:https://www.cnblogs.com/xingzhensun/p/8483602.html