Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

40%
+2 −4
Q&A How do I properly format a String for parsing with a com.google.gson.JsonParser

I am trying to check a JSON array for a certain element. However, when I try to instantiate a JsonElement to search the list for: JsonElement builderElement = JsonParser.parseString( "{\"disc...

0 answers  ·  posted 2y ago by cuzzo‭  ·  edited 2y ago by Stephen C‭

Question java json json-parser
#7: Post edited by user avatar Stephen C‭ · 2022-02-19T17:41:33Z (about 2 years ago)
Fix markdown formatting
  • How Do I properly format a String for parsing with a com.google.gson.JsonParser
  • How do I properly format a String for parsing with a com.google.gson.JsonParser
  • I am trying to check a JSON array for a certain element. However, when I try to instantiate a JsonElement to search the list for:
  • JsonElement builderElement = JsonParser.parseString("{\"discordId\":" + event.getAuthor().getIdLong() + ",\"discordTag\":" + event.getAuthor().getAsTag() + ",\"role\":\"builder\"}");
  • The resulting error is
  • `java.io.EOFException: End of input at line 1 column 77 path $.discordTag`.
  • `event.getAuthor().getIdLong()` is retrieving the discord message authors ID and `event.getAuthor().getAsTag()` is retrieving the discord message author in the form of `username#0000`.
  • A snippet of the JSON array I am searching is as follows:
  • `{"discordId":"255499044925865984","discordTag":"Joker#2234","role":"builder"},{"discordId":"219899183966978048","discordTag":"Dippy#7607","role":"builder"},{"discordId":"261959402012147712","discordTag":"TrueMags#0618","role":"builder"},{"discordId":"399011983845883914","discordTag":"DealySon#0584","role":"builder"},{"discordId":"97867804463599616","discordTag":"EpicMisterB#1337","role":"co-leader"},`
  • As far as I can tell, it is an issue with formatting of the string I am parsing in `builderElement`.
  • I am trying to check a JSON array for a certain element. However, when I try to instantiate a JsonElement to search the list for:
  • JsonElement builderElement = JsonParser.parseString(
  • "{\"discordId\":" + event.getAuthor().getIdLong() +
  • ",\"discordTag\":" + event.getAuthor().getAsTag() +
  • ",\"role\":\"builder\"}");
  • The resulting error is
  • java.io.EOFException: End of input at line 1 column 77 path $.discordTag
  • `event.getAuthor().getIdLong()` is retrieving the discord message authors ID and `event.getAuthor().getAsTag()` is retrieving the discord message author in the form of `username#0000`.
  • A snippet of the JSON array I am searching is as follows:
  • {"discordId":"255499044925865984","discordTag":"Joker#2234","role":"builder"},
  • {"discordId":"219899183966978048","discordTag":"Dippy#7607","role":"builder"},
  • {"discordId":"261959402012147712","discordTag":"TrueMags#0618","role":"builder"},
  • {"discordId":"399011983845883914","discordTag":"DealySon#0584","role":"builder"},
  • {"discordId":"97867804463599616","discordTag":"EpicMisterB#1337","role":"co-leader"},
  • As far as I can tell, it is an issue with formatting of the string I am parsing in `builderElement`.
#6: Post edited by user avatar Alexei‭ · 2021-12-28T13:32:57Z (about 2 years ago)
added relevant tag
#5: Post edited by user avatar cuzzo‭ · 2021-12-28T04:04:20Z (over 2 years ago)
  • I am trying to check a JSON array for a certain element. However, when I try to instantiate a JsonElement to search the list for:
  • JsonElement builderElement = JsonParser.parseString(" {\"discordId\":" + event.getAuthor().getIdLong() + ",\"discordTag\":" + event.getAuthor().getAsTag() + ",\"role\":\"builder\"}");
  • The resulting error is
  • `java.io.EOFException: End of input at line 1 column 77 path $.discordTag`.
  • `event.getAuthor().getIdLong()` is retrieving the discord message authors ID and `event.getAuthor().getAsTag()` is retrieving the discord message author in the form of `username#0000`.
  • A snippet of the JSON array I am searching is as follows:
  • `{"discordId":"255499044925865984","discordTag":"Joker#2234","role":"builder"},{"discordId":"219899183966978048","discordTag":"Dippy#7607","role":"builder"},{"discordId":"261959402012147712","discordTag":"TrueMags#0618","role":"builder"},{"discordId":"399011983845883914","discordTag":"DealySon#0584","role":"builder"},{"discordId":"97867804463599616","discordTag":"EpicMisterB#1337","role":"co-leader"},`
  • As far as I can tell, it is an issue with formatting of the string I am parsing in `builderElement`.
  • I am trying to check a JSON array for a certain element. However, when I try to instantiate a JsonElement to search the list for:
  • JsonElement builderElement = JsonParser.parseString("{\"discordId\":" + event.getAuthor().getIdLong() + ",\"discordTag\":" + event.getAuthor().getAsTag() + ",\"role\":\"builder\"}");
  • The resulting error is
  • `java.io.EOFException: End of input at line 1 column 77 path $.discordTag`.
  • `event.getAuthor().getIdLong()` is retrieving the discord message authors ID and `event.getAuthor().getAsTag()` is retrieving the discord message author in the form of `username#0000`.
  • A snippet of the JSON array I am searching is as follows:
  • `{"discordId":"255499044925865984","discordTag":"Joker#2234","role":"builder"},{"discordId":"219899183966978048","discordTag":"Dippy#7607","role":"builder"},{"discordId":"261959402012147712","discordTag":"TrueMags#0618","role":"builder"},{"discordId":"399011983845883914","discordTag":"DealySon#0584","role":"builder"},{"discordId":"97867804463599616","discordTag":"EpicMisterB#1337","role":"co-leader"},`
  • As far as I can tell, it is an issue with formatting of the string I am parsing in `builderElement`.
#4: Post edited by user avatar cuzzo‭ · 2021-12-28T01:22:29Z (over 2 years ago)
  • I am trying to check a JSON list for a certain element. However, when I try to instantiate a JsonElement to search the list for:
  • JsonElement builderElement = JsonParser.parseString(" {\"discordId\":" + event.getAuthor().getIdLong() + ",\"discordTag\":" + event.getAuthor().getAsTag() + ",\"role\":\"builder\"}");
  • The resulting error is
  • `java.io.EOFException: End of input at line 1 column 77 path $.discordTag`.
  • `event.getAuthor().getIdLong()` is retrieving the discord message authors ID and `event.getAuthor().getAsTag()` is retrieving the discord message author in the form of `username#0000`.
  • A snippet of the JSON array I am searching is as follows:
  • `{"discordId":"255499044925865984","discordTag":"Joker#2234","role":"builder"},{"discordId":"219899183966978048","discordTag":"Dippy#7607","role":"builder"},{"discordId":"261959402012147712","discordTag":"TrueMags#0618","role":"builder"},{"discordId":"399011983845883914","discordTag":"DealySon#0584","role":"builder"},{"discordId":"97867804463599616","discordTag":"EpicMisterB#1337","role":"co-leader"},`
  • As far as I can tell, it is an issue with formatting of the string I am parsing in `builderElement`.
  • I am trying to check a JSON array for a certain element. However, when I try to instantiate a JsonElement to search the list for:
  • JsonElement builderElement = JsonParser.parseString(" {\"discordId\":" + event.getAuthor().getIdLong() + ",\"discordTag\":" + event.getAuthor().getAsTag() + ",\"role\":\"builder\"}");
  • The resulting error is
  • `java.io.EOFException: End of input at line 1 column 77 path $.discordTag`.
  • `event.getAuthor().getIdLong()` is retrieving the discord message authors ID and `event.getAuthor().getAsTag()` is retrieving the discord message author in the form of `username#0000`.
  • A snippet of the JSON array I am searching is as follows:
  • `{"discordId":"255499044925865984","discordTag":"Joker#2234","role":"builder"},{"discordId":"219899183966978048","discordTag":"Dippy#7607","role":"builder"},{"discordId":"261959402012147712","discordTag":"TrueMags#0618","role":"builder"},{"discordId":"399011983845883914","discordTag":"DealySon#0584","role":"builder"},{"discordId":"97867804463599616","discordTag":"EpicMisterB#1337","role":"co-leader"},`
  • As far as I can tell, it is an issue with formatting of the string I am parsing in `builderElement`.
#3: Post edited by user avatar cuzzo‭ · 2021-12-28T00:57:37Z (over 2 years ago)
  • I am trying to check a JSON list for a certain element. However, when I try to instantiate a JsonElement to search the list for:
  • JsonElement builderElement = JsonParser.parseString(" {\"discordId\":" + event.getAuthor().getIdLong() + ",\"discordTag\":" + event.getAuthor().getAsTag() + ",\"role\":\"builder\"}");
  • The resulting error is
  • `java.io.EOFException: End of input at line 1 column 77 path $.discordTag`.
  • `event.getAuthor().getIdLong()` is retrieving the discord message authors ID and `event.getAuthor().getAsTag()` is retrieving the discord message author in the form of `username#0000`.
  • A snippet of the JSON array I am searching is as follows:
  • `{"discordId":"255499044925865984","discordTag":"Joker#2234","role":"builder"},{"discordId":"219899183966978048","discordTag":"Dippy#7607","role":"builder"},{"discordId":"261959402012147712","discordTag":"TrueMags#0618","role":"builder"},{"discordId":"399011983845883914","discordTag":"DealySon#0584","role":"builder"},{"discordId":"97867804463599616","discordTag":"EpicMisterB#1337","role":"co-leader"},`
  • As far as I can tell, it is an issue with formatting `builderElement`. Does anyone know how I would go about fixing this?
  • I am trying to check a JSON list for a certain element. However, when I try to instantiate a JsonElement to search the list for:
  • JsonElement builderElement = JsonParser.parseString(" {\"discordId\":" + event.getAuthor().getIdLong() + ",\"discordTag\":" + event.getAuthor().getAsTag() + ",\"role\":\"builder\"}");
  • The resulting error is
  • `java.io.EOFException: End of input at line 1 column 77 path $.discordTag`.
  • `event.getAuthor().getIdLong()` is retrieving the discord message authors ID and `event.getAuthor().getAsTag()` is retrieving the discord message author in the form of `username#0000`.
  • A snippet of the JSON array I am searching is as follows:
  • `{"discordId":"255499044925865984","discordTag":"Joker#2234","role":"builder"},{"discordId":"219899183966978048","discordTag":"Dippy#7607","role":"builder"},{"discordId":"261959402012147712","discordTag":"TrueMags#0618","role":"builder"},{"discordId":"399011983845883914","discordTag":"DealySon#0584","role":"builder"},{"discordId":"97867804463599616","discordTag":"EpicMisterB#1337","role":"co-leader"},`
  • As far as I can tell, it is an issue with formatting of the string I am parsing in `builderElement`.
#2: Post edited by user avatar cuzzo‭ · 2021-12-28T00:56:33Z (over 2 years ago)
  • I am trying to check a JSON list for a certain element. However, when I try to instantiate a JsonElement to search the list for:
  • `JsonElement builderElement = JsonParser.parseString("{\"discordId\":" + event.getAuthor().getIdLong() + ",\"discordTag\":" + event.getAuthor().getAsTag() + ",\"role\":\"builder\"}");`
  • The resulting error is
  • `java.io.EOFException: End of input at line 1 column 77 path $.discordTag`.
  • `event.getAuthor().getIdLong()` is retrieving the discord message authors ID and `event.getAuthor().getAsTag()` is retrieving the discord message author in the form of `username#0000`.
  • A snippet of the JSON array I am searching is as follows:
  • `{"discordId":"255499044925865984","discordTag":"Joker#2234","role":"builder"},{"discordId":"219899183966978048","discordTag":"Dippy#7607","role":"builder"},{"discordId":"261959402012147712","discordTag":"TrueMags#0618","role":"builder"},{"discordId":"399011983845883914","discordTag":"DealySon#0584","role":"builder"},{"discordId":"97867804463599616","discordTag":"EpicMisterB#1337","role":"co-leader"},`
  • As far as I can tell, it is an issue with formatting `builderElement`. Does anyone know how I would go about fixing this?
  • I am trying to check a JSON list for a certain element. However, when I try to instantiate a JsonElement to search the list for:
  • JsonElement builderElement = JsonParser.parseString(" {\"discordId\":" + event.getAuthor().getIdLong() + ",\"discordTag\":" + event.getAuthor().getAsTag() + ",\"role\":\"builder\"}");
  • The resulting error is
  • `java.io.EOFException: End of input at line 1 column 77 path $.discordTag`.
  • `event.getAuthor().getIdLong()` is retrieving the discord message authors ID and `event.getAuthor().getAsTag()` is retrieving the discord message author in the form of `username#0000`.
  • A snippet of the JSON array I am searching is as follows:
  • `{"discordId":"255499044925865984","discordTag":"Joker#2234","role":"builder"},{"discordId":"219899183966978048","discordTag":"Dippy#7607","role":"builder"},{"discordId":"261959402012147712","discordTag":"TrueMags#0618","role":"builder"},{"discordId":"399011983845883914","discordTag":"DealySon#0584","role":"builder"},{"discordId":"97867804463599616","discordTag":"EpicMisterB#1337","role":"co-leader"},`
  • As far as I can tell, it is an issue with formatting `builderElement`. Does anyone know how I would go about fixing this?
#1: Initial revision by user avatar cuzzo‭ · 2021-12-28T00:54:27Z (over 2 years ago)
How Do I properly format a String for parsing with a com.google.gson.JsonParser
I am trying to check a JSON list for a certain element. However, when I try to instantiate a JsonElement to search the list for:
 
`JsonElement builderElement = JsonParser.parseString("{\"discordId\":" + event.getAuthor().getIdLong() + ",\"discordTag\":" + event.getAuthor().getAsTag() + ",\"role\":\"builder\"}");`

The resulting error is 

`java.io.EOFException: End of input at line 1 column 77 path $.discordTag`. 


`event.getAuthor().getIdLong()` is retrieving the discord message authors ID and `event.getAuthor().getAsTag()` is retrieving the discord message author in the form of `username#0000`.

A snippet of the JSON array I am searching is as follows:
`{"discordId":"255499044925865984","discordTag":"Joker#2234","role":"builder"},{"discordId":"219899183966978048","discordTag":"Dippy#7607","role":"builder"},{"discordId":"261959402012147712","discordTag":"TrueMags#0618","role":"builder"},{"discordId":"399011983845883914","discordTag":"DealySon#0584","role":"builder"},{"discordId":"97867804463599616","discordTag":"EpicMisterB#1337","role":"co-leader"},`

As far as I can tell, it is an issue with formatting `builderElement`. Does anyone know how I would go about fixing this?