Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
78 views
in Technique[技术] by (71.8m points)

How can I create a representation of JSON as an integer

Let's say I have the following JSONS:

  1. { "Owner": "Bob", "Company: "A: }

  2. { "Owner": "Alice", "Company: "A" "Age": 42 }

How can I create an integer identifier for the entire json so I could know if a key/value is in it?

I'm thinking of giving each of the different keys and values an ID:

so for example:

Keys:

Owner: 1

Company: 2

Age: 3

Values:

Bob: 1

Alice: 2

A: 3

42: 4

But I'm lacking a way to combine them together to one number so once I would like to know if a certain key or value is in the JSON I could reverse manipulate the number somehow and check.

question from:https://stackoverflow.com/questions/65905002/how-can-i-create-a-representation-of-json-as-an-integer

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...