導航:首頁 > 操作系統 > linuxcjson解析json

linuxcjson解析json

發布時間:2023-01-11 09:22:56

Ⅰ 這種json怎麼解析[ "1", "2", "3", "4" ]

int cjson_parse(char *json_data)
{
cJSON *json,*item;
int i;
json=cJSON_Parse(json_data);
if (!json)
{
printf("Error before: [%s]\n",cJSON_GetErrorPtr());
return -1;
}
else
{
int size=cJSON_GetArraySize(json);
for(i=0;i<size;i++)
{
item=cJSON_GetArrayItem(json,i);

//atoi(item->valuestring)等到整數,

}

}

}
————————————————
版權聲明:本文為CSDN博主「hairubb」的原創文章,遵循 CC 4.0 BY-SA 版權協議,轉載請附上原文出處鏈接及本聲明。
原文鏈接:https://blog.csdn.net/hairubb/article/details/102778242

Ⅱ cjson數組如何解析

JSONObject Gson Xstream等等的類庫都可以解析
請把你的json代碼提交上來JSONObject object = new JSONObject(json);JSONObject root = object.getJSONObject("root"); JSONObject data = root.getJSONObject("data"); JSONArray list = data.getJSONArray("list");for(int i=0; i<list.length(); i++){ JSONObject entityObj = list.getJSONObject(i); JSONArray entitys = entityObj.getJSONArray("entity"); for(int j=0; j<entitys.length(); j++){ JSONObject entity = entitys.getJSONObject(j); String date = entity.getString("取消日期"); } }引入jar,替換你的json直接可運行

linux下怎麼使用jq工具把json解析成完整的欄位格式

1、通過JSON2.js中的JSON.parse()方法轉, 2、直接用javascript的eval()轉 3、自己寫邏輯解析對象字元串再封裝到一個對象裡面(這個自己寫很難寫得有通用性,建議採用方案一或者二)

Ⅳ 用C語言解析JSON數據

http://www.json.org/
列出了一堆C語言的JSON庫。

C:
JSON_checker.
YAJL.
js0n.
LibU.
json-c.
json-parser.
jsonsl.
WJElement.
M's JSON parser.
cJSON.
Jansson.
jsmn.
cson.
parson.
ujson4c.
nxjson.
frozen.

Ⅳ 如何在linux中使用命令行解析json文檔

開始 - 運行-CMD 在命令提示符下,輸入(引號裡面的內容) 「副教授的exe = exefile」。 >然後輸入: 「。assoc命令將DLL = dllfile」輸入 然後輸入: 「。assoc命令LNK = lnkfile」輸入 記事本

Ⅵ 怎麼用C語言獲取JSON中的數據

用C語言獲取JSON中的數據的方法是使用 CJSON。

以下簡單介紹用CJSON的思路及實現:

1)創建json,從json中獲取數據。

#nclude <stdio.h>

#include "cJSON.h"

char * makeJson()

{

cJSON * pJsonRoot = NULL;


pJsonRoot = cJSON_CreateObject();

if(NULL == pJsonRoot)

{

//error happend here

return NULL;

}

cJSON_AddStringToObject(pJsonRoot, "hello", "hello world");

cJSON_AddNumberToObject(pJsonRoot, "number", 10010);

cJSON_AddBoolToObject(pJsonRoot, "bool", 1);

cJSON * pSubJson = NULL;

pSubJson = cJSON_CreateObject();

if(NULL == pSubJson)

{

// create object faild, exit

cJSON_Delete(pJsonRoot);

return NULL;

}

cJSON_AddStringToObject(pSubJson, "subjsonobj", "a sub json string");

cJSON_AddItemToObject(pJsonRoot, "subobj", pSubJson);

char * p = cJSON_Print(pJsonRoot);

// else use :

// char * p = cJSON_PrintUnformatted(pJsonRoot);

if(NULL == p)

{

//convert json list to string faild, exit

//because sub json pSubJson han been add to pJsonRoot, so just delete pJsonRoot, if you also delete pSubJson, it will coremp, and error is : double free

cJSON_Delete(pJsonRoot);

return NULL;

}

//free(p);

cJSON_Delete(pJsonRoot);

return p;

}

void parseJson(char * pMsg)

{

if(NULL == pMsg)

{

return;

}

cJSON * pJson = cJSON_Parse(pMsg);

if(NULL == pJson)

{

// parse faild, return

return ;

}

// get string from json

cJSON * pSub = cJSON_GetObjectItem(pJson, "hello");

if(NULL == pSub)

{

//get object named "hello" faild

}

printf("obj_1 : %s ", pSub->valuestring);

// get number from json

pSub = cJSON_GetObjectItem(pJson, "number");

if(NULL == pSub)

{

//get number from json faild

}

printf("obj_2 : %d ", pSub->valueint);

// get bool from json

pSub = cJSON_GetObjectItem(pJson, "bool");

if(NULL == pSub)

{

// get bool from json faild

}

printf("obj_3 : %d ", pSub->valueint);

// get sub object

pSub = cJSON_GetObjectItem(pJson, "subobj");

if(NULL == pSub)

{

// get sub object faild

}

cJSON * pSubSub = cJSON_GetObjectItem(pSub, "subjsonobj");

if(NULL == pSubSub)

{

// get object from subject object faild

}

printf("sub_obj_1 : %s ", pSubSub->valuestring);

cJSON_Delete(pJson);

}


int main()

{

char * p = makeJson();

if(NULL == p)

{

return 0;

}

printf("%s ", p);

parseJson(p);

free(p);//這里不要忘記釋放內存,cJSON_Print()函數或者cJSON_PrintUnformatted()產生的內存,使用free(char *)進行釋放

return 0;

}

2)創建json數組和解析json數組

//創建數組,數組值是另一個JSON的item,這里使用數字作為演示

char * makeArray(int iSize)

{

cJSON * root = cJSON_CreateArray();

if(NULL == root)

{

printf("create json array faild ");

return NULL;

}

int i = 0;


for(i = 0; i < iSize; i++)

{

cJSON_AddNumberToObject(root, "hehe", i);

}

char * out = cJSON_Print(root);

cJSON_Delete(root);


return out;

}

//解析剛剛的CJSON數組

void parseArray(char * pJson)

{

if(NULL == pJson)

{

return ;

}

cJSON * root = NULL;

if((root = cJSON_Parse(pJson)) == NULL)

{

return ;

}

int iSize = cJSON_GetArraySize(root);

for(int iCnt = 0; iCnt < iSize; iCnt++)

{

cJSON * pSub = cJSON_GetArrayItem(root, iCnt);

if(NULL == pSub)

{

continue;

}

int iValue = pSub->valueint;

printf("value[%2d] : [%d] ", iCnt, iValue);

}

cJSON_Delete(root);

return;

}

Ⅶ linux能夠識別的程序代碼是什麼

1、讀取文件全部內容
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char* argv[])
{
char ch;
FILE* fp;
unsigned long int count = 0;
char buf[1025] = {0};

// 這里要求我們在輸入兩個參數,第一個為 exe 路徑,第二個為 文件名
// 如 file_test.exe test.txt
if (argc != 2)
{
printf("Usage: %s filename\n", argv[0]);
exit(EXIT_FAILURE);
}
if ((fp = fopen(argv[1], "r")) == NULL)
{
// 如果文件打開失敗(通常是文件不存在),則結束程序
printf("Can't open %s\n", argv[1]);
exit(EXIT_FAILURE);
}
while ((ch = getc(fp)) != EOF && count < 1024)
{
// 顯示文本內容並計數
buf[count] = ch;
count++;
}
fclose(fp);
printf("%s\n", buf);
printf("File %s has %lu characters\n", argv[1], count);

return 0;
}

2、cJSON解析字元串
編譯選項要加 -lm

示例源串

{
"server": {
"nodes": [{
"ip": "10.76.76.190",
"port": 6379
}, {
"ip": "10.76.76.191",
"port": 6380
}, {
"ip": "10.76.76.192",
"port": 6381
}],
"password": "admin"
},
"isssl": true
}
登錄後復制

示例代碼(每一行記得判空,編譯時加-lm選項)

#include <stdio.h>
#include "cJSON.h"
int main(){

char c[] = "{\"server\":{\"nodes\":[{\"ip\":\"10.76.76.190\",\"port\":6379},{\"ip\":\"10.76.76.191\",\"port\":6380},{\"ip\":\"10.76.76.192\",\"port\":6381}],\"password\":\"admin\"},\"isssl\":true}";

cJSON* root = cJSON_Parse(c);
cJSON* json_server = cJSON_GetObjectItem(root, "server");
cJSON* json_isssl = cJSON_GetObjectItem(root, "isssl");
cJSON* json_password = cJSON_GetObjectItem(json_server, "password");
cJSON* json_nodes = cJSON_GetObjectItem(json_server, "nodes");

int i = 0;
for (; i != cJSON_GetArraySize(json_nodes); ++i) {
cJSON* each = cJSON_GetArrayItem(json_nodes, i);
cJSON* json_ip = cJSON_GetObjectItem(each, "ip");
cJSON* json_port = cJSON_GetObjectItem(each, "port");
printf("ip %s\n", json_ip->valuestring);
printf("port %d\n", json_port->valueint);
}

printf("password %s\n", json_password->valuestring);
printf("is ssl %s\n", json_isssl->valueint ? "true":"false");
cJSON_Delete(root);
}

3、curl拿到回傳的數據
編譯選項要加 -lcurl

頭部選項參考

https://curl.se/libcurl/c/curl_easy_setopt.html
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <curl/curl.h>

struct string {
char* ptr;
size_t len;
};

void init_string(struct string* s) {
s->len = 0;
s->ptr = malloc(s->len + 1);
if (s->ptr == NULL) {
fprintf(stderr, "malloc() failed\n");
exit(EXIT_FAILURE);
}
s->ptr[0] = '\0';
}

size_t writefunc(void* ptr, size_t size, size_t nmemb, struct string* s) {
size_t new_len = s->len + size * nmemb;
s->ptr = realloc(s->ptr, new_len + 1);
if (s->ptr == NULL) {
fprintf(stderr, "realloc() failed\n");
exit(EXIT_FAILURE);
}
memcpy(s->ptr + s->len, ptr, size * nmemb);
s->ptr[new_len] = '\0';
s->len = new_len;

return size * nmemb;
}

int main(void) {
CURL* curl;
CURLcode res;

curl = curl_easy_init();
if(curl) {
struct string s;
init_string(&s);

curl_easy_setopt(curl, CURLOPT_URL, "https://www..com");
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "test");
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writefunc);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &s);
res = curl_easy_perform(curl);

printf("列印數據:\n%s", s.ptr);
free(s.ptr);

/* always cleanup */
curl_easy_cleanup(curl);
}
return 0;
}

4、獲取隨機數
#include <stdio.h>

int main(int argc, char* argv[]){

srand((int)time(0));

//列印 32位 test 隨機數,並用16進製表示
int test2 = rand();
printf("%lx \n", test2);

// 列印 64位 test 隨機數,並用16進製表示, 016代表不足16位的部分,補零,llx代表列印64位的16進制數
unsigned long long test = ((unsigned long long)rand() << 32) + rand();
printf("%016llx \n", test);

return 0;
}

5、定義按位的結構體
總結,按照位定義結構體,一定要都按照位定義,不然會出現意想不到的錯誤,而且一定要定義無符號的

#include <stdio.h>
#pragma pack (1)

struct test1 {

unsigned char cloud_id:3;
unsigned char vendor_id:4;
unsigned short machine_id;
unsigned long long current_time:41;

};

struct test2 {

unsigned char cloud_id:3;
unsigned char vendor_id:4;
unsigned short machine_id:16;
unsigned long long current_time:41;

};

int main(int argc, char* argv[]){

printf("test1 大小 : %d \n", sizeof(struct test1));
printf("test2 大小 : %d \n", sizeof(struct test2));

return 0;
}

6、按位列印01位元組碼
#include <stdio.h>
// 修改type後面的類型,可以查看各種數的位元組碼
#define type unsigned int

void print_bin(type num)
{
int len = sizeof(type);
int n = 8;
int i, j, k;
unsigned char *p = (unsigned char*)&num + len -1;

for (i = 0; i < len; i++) //處理len個位元組
{
j = *(p - i); //取每個位元組的首地址
for ( k = 7; k >= 0; k--) //處理每個位元組的8個位
{
if (j & (1 << k))
printf("1");
else
printf("0");
}
printf(" ");
}
printf("\r\n");
}

int main(int argc, char* argv[]){

type a = 100;
print_bin(a);

return 0;
}
登錄後復制

7、列印16進制位元組碼
#include<stdio.h>
typedef unsigned char uint8;
#define HEXDUMP_LINE_LENGTH 16
void hex_mp(uint8* data, int length)
{
uint8* p = data;
int i, line, offset = 0;

while (offset < length)
{
printf("%04x ", offset);

line = length - offset;

if (line > HEXDUMP_LINE_LENGTH)
line = HEXDUMP_LINE_LENGTH;

for (i = 0; i < line; i++)
printf("%02x ", p[i]);

for (; i < HEXDUMP_LINE_LENGTH; i++)
printf(" ");

for (i = 0; i < line; i++)
printf("%c", (p[i] >= 0x20 && p[i] < 0x7F) ? p[i] : '.');

printf("\n");

offset += line;
p += line;
}
}

8、列印位元組碼簡易版
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
void main() {
unsigned char Buf[] = "123456";
unsigned int len = strlen(Buf);
char* Buf1 = (char*)malloc(len * 3 + 1);
int i = 0, k = 0;
for (; i < len * 3; i += 3, k++)
snprintf(&Buf1[i], 4, "%02x ", Buf[k]);
printf(Buf1);
free(Buf1);
}

9、逐級創建文件夾
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
int mkdir_recursively(char* dir) {
if (NULL == dir)
return 1;

size_t len = strlen(dir);
char* str = malloc(len + 1);

if (NULL == str)
return 1;

strcpy(str, dir);
int i = 0;
for (i = 0; i < len; i++) {
if (str[i] == '/') {
if (i == 0)
continue;
str[i] = '\0';
if (access(str, 0) != 0) {
if (mkdir(str, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)) {
free(str);
return 1;
}
}
str[i] = '/';
}
}

if (len > 0 && access(str, 0) != 0) {
if (mkdir(str, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)) {
free(str);
return 1;
}
}

free(str);
return 0;
}
int main() {
mkdir_recursively("/home/test/abc/edf")

Ⅷ c語言 解析json字元串

你好,你用json-c庫,編譯通過了嗎?我是在ubuntu里使用json-c庫,但是無法編譯通過,報錯 undefined reference to 'json_tokener_parse',類似的函數沒定義的錯誤,你是怎麼調用的json-c庫?請教一下,謝謝!

Ⅸ 【Lua】cjson解析null

最近遇到一個問題,在lua中使用cjson解析json中數據為null時,解析出來是一個userdata。如圖:

我們需要判斷這個值使用cjson.null。

具體的可以看看 文檔 很詳細。

Ⅹ linux下怎麼使用jq工具把json解析成完整的欄位格式

把數據按你需要的格式組成JSON字元串,然後通過下面這個方法,把json字元串轉化為JSON對象 function parseObj( strData ){ return (new Function( "return " + strData ))(); }

閱讀全文

與linuxcjson解析json相關的資料

熱點內容
伺服器顯示error1什麼意思 瀏覽:708
python代碼精簡 瀏覽:457
文件加密了怎麼找到了 瀏覽:193
jellyfin插件怎麼選擇主伺服器 瀏覽:836
asp用戶注冊源碼 瀏覽:48
什麼是照片壓縮文件 瀏覽:392
java調用js代碼 瀏覽:979
崑山市民app怎麼修改身份信息 瀏覽:779
php登陸次數 瀏覽:744
python字元轉成數字 瀏覽:822
海川用的是什麼伺服器 瀏覽:376
口才是練出來的pdf 瀏覽:458
雲伺服器哪個公司性價比高 瀏覽:517
源碼論壇打包 瀏覽:558
php怎麼做成word 瀏覽:692
python批量生成密鑰 瀏覽:492
程序員要不要考社區人員 瀏覽:150
app的錢怎麼充q幣 瀏覽:814
android銀行卡識別 瀏覽:756
怎麼在app投放廣告 瀏覽:11