char *token = NULL, *p[LEN];
int i = 0;
p[i] = strtok(buf, ",");while ((token = strtok(NULL, "/")) != NULL)
{
p[++i] = token;
printf("字符串返回第一个参数: %s\nGet Input_Parameter字符串返回第二个参数: %s\n",p[0], p[1]);
}
char *token = NULL, *p[LEN];
int i = 0;
p[i] = strtok(buf, ",");