Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Free Pascal
»
General
(Moderators:
FPK
,
Tomas Hajny
) »
[ SOLVED ] Json parse problem
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Feature announcement: Fun...
by
Peter H
[
Today
at 01:00:58 am]
Connect Bluetooth Chess b...
by
tearsfornations
[
Today
at 12:44:06 am]
Are We Dead Yet?
by
dieselnutjob
[
Today
at 12:35:09 am]
program locks up using se...
by
dieselnutjob
[
Today
at 12:31:35 am]
How to download a file fr...
by
maurobio
[
Today
at 12:25:09 am]
How to POST a SOAPAction ...
by
rvk
[
Today
at 12:12:23 am]
is it possible to create ...
by
andyf97
[
Today
at 12:04:07 am]
Check for updates and upd...
by
lainz
[June 08, 2023, 10:27:12 pm]
What to change ModePortA,...
by
ccrause
[June 08, 2023, 10:17:09 pm]
Small DBMS project and Ho...
by
Researching
[June 08, 2023, 09:53:35 pm]
Access violation with use...
by
Martin_fr
[June 08, 2023, 08:34:18 pm]
Suggestion on the lines o...
by
Skvoznjak
[June 08, 2023, 06:43:43 pm]
Best way to include lots ...
by
PascalDragon
[June 08, 2023, 06:14:51 pm]
.cvd ClamAV database comp...
by
PascalDragon
[June 08, 2023, 06:09:43 pm]
DBEdit - display setting ...
by
rvk
[June 08, 2023, 05:44:34 pm]
[SOLVED] Help for downloa...
by
magleft
[June 08, 2023, 05:02:48 pm]
Testers needed: FpDebug a...
by
Martin_fr
[June 08, 2023, 03:27:07 pm]
Scope of cross-platform
by
egsuh
[June 08, 2023, 03:23:54 pm]
Making a little chart app
by
circular
[June 08, 2023, 01:23:15 pm]
[RESOLVED] bug in FpWait?
by
robert rozee
[June 08, 2023, 01:04:36 pm]
Can't place ATBinHex on f...
by
GetMem
[June 08, 2023, 12:50:08 pm]
Lazarus for RISC OS
by
PascalDragon
[June 08, 2023, 12:26:48 pm]
Search in files
by
d7_2_laz
[June 08, 2023, 11:43:33 am]
virtualdbtreeex
by
Pe3s
[June 08, 2023, 11:06:36 am]
Fill dual brush color in ...
by
wp
[June 08, 2023, 10:48:05 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [ SOLVED ] Json parse problem (Read 301 times)
superc
Full Member
Posts: 235
[ SOLVED ] Json parse problem
«
on:
March 23, 2023, 08:58:26 am »
Hello,
I've a json like this:
Code: Pascal
[Select]
[+]
[-]
{
"Input": [
{
"lang": {
"bg": null,
"cs": null,
"da": null,
"de": "asdasdasdasd",
"el": null,
"en": "asdasdasdasda",
"es": "anmtrodsfsad",
"et": null,
"fr": "asdasdas",
"hr": null,
"hu": null,
"it": "asda grill",
"lt": null,
"lv": null,
"nl": null,
"pl": "asdasdasd grilla",
"pt": "asdasdasda",
"ro": null,
"ru": "\u0441\u0435\u043d\u0441\u043e\u0440\u043d\u044b\u0439 \u0433\u0440\u0438\u043b\u044c",
"sk": null,
"sl": null,
"sr": null,
"sv": null,
"tr": null
}
,
"val_par"
:
1
}
]
}
I wrote a code like this :
Code: Pascal
[Select]
[+]
[-]
var
jInput
,
jVersions
:
TJSONArray
;
js
,
o
,
t
:
TJSONData
;
str
:
string
;
i
,
c
:
Integer
;
JsonFile
:
TFileStream
;
fileStream
:
TFileStream
;
tl
:
TStringList
;
stTemp
:
string
;
begin
try
tl
:
=
TStringList
.
Create
;
tl
.
LoadFromFile
(
fileJson
)
;
js
:
=
GetJSON
(
tl
.
Text
)
;
o
:
=
js
.
FindPath
(
'Input'
)
;
if
(
o <>
nil
)
and
(
o
.
JSONType
=
jtArray
)
then
begin
jInput
:
=
TJSONArray
(
o
)
;
for
i
:
=
0
to
jInput
.
Count
-
1
do
begin
o
:
=
jInput
[
i
]
.
FindPath
(
'lang'
)
;
if
(
o <>
nil
)
and
(
o
.
JSONType
=
jtObject
)
then
begin
end
;
end
;
end
;
finally
js
.
Free
;
tl
.
Free
;
end
;
end
;
I don't understand how to reach language tags like "bg", "cs", etc...
Thanks in advance.
«
Last Edit: March 23, 2023, 11:58:50 am by superc
»
Logged
superc
Full Member
Posts: 235
Re: Json parse problem
«
Reply #1 on:
March 23, 2023, 09:05:07 am »
found it :
Code: Pascal
[Select]
[+]
[-]
o
:
=
jInput
[
i
]
.
FindPath
(
'lang'
)
;
if
(
o <>
nil
)
and
(
o
.
JSONType
=
jtObject
)
then
begin
stTemp
:
=
o
.
FindPath
(
'de'
)
.
Value
;
end
;
Logged
loaded
Hero Member
Posts: 757
Re: Json parse problem
«
Reply #2 on:
March 23, 2023, 09:12:05 am »
Code: Pascal
[Select]
[+]
[-]
uses
fpjson
;
procedure
TForm1
.
Button1Click
(
Sender
:
TObject
)
;
var
jmain
:
TJSONData
;
begin
jmain
:
=
GetJSON
(
'{"Input":[{"lang":{"bg":null,"cs":null,"da":null,"de":"asdasdasdasd","el":null,"en":"asdasdasdasda","es":"anmtrodsfsad","et":null,"fr":"asdasdas","hr":null,"hu":null,"it":"asda grill","lt":null,"lv":null,"nl":null,"pl":"asdasdasd grilla","pt":"asdasdasda","ro":null,"ru":"сенсорный гриль","sk":null,"sl":null,"sr":null,"sv":null,"tr":null},"val_par":1}]}'
)
;
showmessage
(
jmain
.
FindPath
(
'Input'
)
.
items
[
0
]
.
FindPath
(
'lang'
)
.
FindPath
(
'de'
)
.
AsString
)
;
end
;
Logged
If
Ide
=
Lazarus 2.2.4 32 Bit
and
Os
=
Win 10 Home 64 Bit 22H2
then
Get up and do something useful! Because God is the helper of those who start again
;
superc
Full Member
Posts: 235
Re: Json parse problem
«
Reply #3 on:
March 23, 2023, 11:58:37 am »
thanks, your code will help me for another function.
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Free Pascal
»
General
(Moderators:
FPK
,
Tomas Hajny
) »
[ SOLVED ] Json parse problem
TinyPortal
© 2005-2018