How do I use JSON.generator to generate an unnamed array?How do I generate a random string?Scheduled Apex Class Testing IssueJson Generator Object within ArraySystem.JSONException: Unexpected character ('}' (code 125))How to deserialize JSON to sObject?JSONError - System.JSONException: Can not start an object, expecting field nameAPEX Deserializing/Parsing RESTful JSON Webservice ResponseHow to grab everything between start of substring and and of text?Apex Quick Start — How do I use the Book?JSON generation in apex batch - how to correctly configure cc in email sending

Why didn’t Christianity spread southwards from Ethiopia in the Middle Ages?

Finding the Maximum of a Continuous Function over a Closed Interval

Anti-cheating: should there be a limit to a number of toilet breaks per game per player?

Why is it "on the inside" and not "in the inside"?

What did G-d do before Creation?

Why is the number of local variables used in a Java bytecode method not the most economical?

Wand of the War Mage spellcasting focus and bonus interaction with multiclassing

Why isn't there any 9.5 digit multimeter or higher?

Exploiting the delay when a festival ticket is scanned

Assuring luggage isn't lost with short layover

Can a US President, after impeachment and removal, be re-elected or re-appointed?

How to store my pliers and wire cutters on my desk?

Why does Canada require mandatory bilingualism in a lot of federal government posts?

Is there a way to know the composition of a Team GO Rocket before going into the fight?

Is there an antonym(a complementary antonym) for "spicy" or "hot" regarding food (I do NOT mean "seasoned" but "hot")?

Why is it considered acid rain with pH <5.6?

(3 of 11: Akari) What is Pyramid Cult's Favorite Car?

Can I change the license of a forked project to the MIT if the license of the parent project has changed from the GPL to the MIT?

What do I do with a party that is much stronger than their level?

2 weeks and a tight budget to prepare for Z-day. How long can I hunker down?

Should I accept an invitation to give a talk from someone who might review my proposal?

Is there a wealth gap in Boston where the median net worth of white households is $247,500 while the median net worth for black families was $8?

Why did I lose on time with 3 pawns vs Knight. Shouldn't it be a draw?

Polyhedra, Polyhedron, Polytopes and Polygon



How do I use JSON.generator to generate an unnamed array?


How do I generate a random string?Scheduled Apex Class Testing IssueJson Generator Object within ArraySystem.JSONException: Unexpected character ('}' (code 125))How to deserialize JSON to sObject?JSONError - System.JSONException: Can not start an object, expecting field nameAPEX Deserializing/Parsing RESTful JSON Webservice ResponseHow to grab everything between start of substring and and of text?Apex Quick Start — How do I use the Book?JSON generation in apex batch - how to correctly configure cc in email sending






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















I'm trying to generate:




"["hello" : "world"]"




gen.writeStartObject();
gen.writeArrayStart();
gen.writeStartObject();
gen.writeStringFeild('hello', 'world');
gen.writeEndObject();
gen.writeArrayEnd();
gen.writeEndObject();


Throws the error:
System.JSONException: Can not start an array, expecting field name



But the array in my example does not have a field name?










share|improve this question






























    2















    I'm trying to generate:




    "["hello" : "world"]"




    gen.writeStartObject();
    gen.writeArrayStart();
    gen.writeStartObject();
    gen.writeStringFeild('hello', 'world');
    gen.writeEndObject();
    gen.writeArrayEnd();
    gen.writeEndObject();


    Throws the error:
    System.JSONException: Can not start an array, expecting field name



    But the array in my example does not have a field name?










    share|improve this question


























      2












      2








      2








      I'm trying to generate:




      "["hello" : "world"]"




      gen.writeStartObject();
      gen.writeArrayStart();
      gen.writeStartObject();
      gen.writeStringFeild('hello', 'world');
      gen.writeEndObject();
      gen.writeArrayEnd();
      gen.writeEndObject();


      Throws the error:
      System.JSONException: Can not start an array, expecting field name



      But the array in my example does not have a field name?










      share|improve this question














      I'm trying to generate:




      "["hello" : "world"]"




      gen.writeStartObject();
      gen.writeArrayStart();
      gen.writeStartObject();
      gen.writeStringFeild('hello', 'world');
      gen.writeEndObject();
      gen.writeArrayEnd();
      gen.writeEndObject();


      Throws the error:
      System.JSONException: Can not start an array, expecting field name



      But the array in my example does not have a field name?







      apex






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 8 hours ago









      muchaviemuchavie

      763 bronze badges




      763 bronze badges























          1 Answer
          1






          active

          oldest

          votes


















          5














          Right now, you open an object before opening your array. An object must consist of field value pairs. Here is an annotated version of what you wrote above, with your three typos corrected.



          gen.writeStartObject();
          // output:
          // remove this line

          gen.writeStartArray();
          // output: [
          // your post had a typo here which I have fixed
          // using writeStartArray rather than writeArrayStart

          gen.writeStartObject();
          // output:

          gen.writeStringField('hello', 'world');
          // output: "hello": "world"
          // your post had a typo here which I have fixed
          // using writeStringField rather than writeStringFeild

          gen.writeEndObject();
          // output:

          gen.writeEndArray();
          // output: ]
          // your post had a typo here which I have fixed
          // using writeEndArray rather than writeArrayEnd

          gen.writeEndObject();
          // output:
          // remove this line


          Please note that JSONGenerator is almost never the correct choice for the job. It is almost universally simpler, easier to read, and better performance to just use out of the box serialization/deserialization. For example, here you could write just one line:



          String payload = JSON.serialize(new List<Object> 
          new Map<String, String> 'hello' => 'world'
          );





          share|improve this answer






















          • 1





            Also its writeStartArray and writeEndArray

            – salesforcesas
            8 hours ago











          • Thank you Adrian!

            – muchavie
            7 hours ago






          • 1





            @muchavie If this answer addressed your problem, please consider accepting it by clicking on the check mark/tick to the left of the answer, turning it green. This marks the question as resolved to your satisfaction, and awards reputation both to you and the person who answered. If you have >= 15 reputation points, you may also upvote the answer if you wish. There is no obligation to do either.

            – Adrian Larson
            7 hours ago













          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "459"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f271469%2fhow-do-i-use-json-generator-to-generate-an-unnamed-array%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          5














          Right now, you open an object before opening your array. An object must consist of field value pairs. Here is an annotated version of what you wrote above, with your three typos corrected.



          gen.writeStartObject();
          // output:
          // remove this line

          gen.writeStartArray();
          // output: [
          // your post had a typo here which I have fixed
          // using writeStartArray rather than writeArrayStart

          gen.writeStartObject();
          // output:

          gen.writeStringField('hello', 'world');
          // output: "hello": "world"
          // your post had a typo here which I have fixed
          // using writeStringField rather than writeStringFeild

          gen.writeEndObject();
          // output:

          gen.writeEndArray();
          // output: ]
          // your post had a typo here which I have fixed
          // using writeEndArray rather than writeArrayEnd

          gen.writeEndObject();
          // output:
          // remove this line


          Please note that JSONGenerator is almost never the correct choice for the job. It is almost universally simpler, easier to read, and better performance to just use out of the box serialization/deserialization. For example, here you could write just one line:



          String payload = JSON.serialize(new List<Object> 
          new Map<String, String> 'hello' => 'world'
          );





          share|improve this answer






















          • 1





            Also its writeStartArray and writeEndArray

            – salesforcesas
            8 hours ago











          • Thank you Adrian!

            – muchavie
            7 hours ago






          • 1





            @muchavie If this answer addressed your problem, please consider accepting it by clicking on the check mark/tick to the left of the answer, turning it green. This marks the question as resolved to your satisfaction, and awards reputation both to you and the person who answered. If you have >= 15 reputation points, you may also upvote the answer if you wish. There is no obligation to do either.

            – Adrian Larson
            7 hours ago















          5














          Right now, you open an object before opening your array. An object must consist of field value pairs. Here is an annotated version of what you wrote above, with your three typos corrected.



          gen.writeStartObject();
          // output:
          // remove this line

          gen.writeStartArray();
          // output: [
          // your post had a typo here which I have fixed
          // using writeStartArray rather than writeArrayStart

          gen.writeStartObject();
          // output:

          gen.writeStringField('hello', 'world');
          // output: "hello": "world"
          // your post had a typo here which I have fixed
          // using writeStringField rather than writeStringFeild

          gen.writeEndObject();
          // output:

          gen.writeEndArray();
          // output: ]
          // your post had a typo here which I have fixed
          // using writeEndArray rather than writeArrayEnd

          gen.writeEndObject();
          // output:
          // remove this line


          Please note that JSONGenerator is almost never the correct choice for the job. It is almost universally simpler, easier to read, and better performance to just use out of the box serialization/deserialization. For example, here you could write just one line:



          String payload = JSON.serialize(new List<Object> 
          new Map<String, String> 'hello' => 'world'
          );





          share|improve this answer






















          • 1





            Also its writeStartArray and writeEndArray

            – salesforcesas
            8 hours ago











          • Thank you Adrian!

            – muchavie
            7 hours ago






          • 1





            @muchavie If this answer addressed your problem, please consider accepting it by clicking on the check mark/tick to the left of the answer, turning it green. This marks the question as resolved to your satisfaction, and awards reputation both to you and the person who answered. If you have >= 15 reputation points, you may also upvote the answer if you wish. There is no obligation to do either.

            – Adrian Larson
            7 hours ago













          5












          5








          5







          Right now, you open an object before opening your array. An object must consist of field value pairs. Here is an annotated version of what you wrote above, with your three typos corrected.



          gen.writeStartObject();
          // output:
          // remove this line

          gen.writeStartArray();
          // output: [
          // your post had a typo here which I have fixed
          // using writeStartArray rather than writeArrayStart

          gen.writeStartObject();
          // output:

          gen.writeStringField('hello', 'world');
          // output: "hello": "world"
          // your post had a typo here which I have fixed
          // using writeStringField rather than writeStringFeild

          gen.writeEndObject();
          // output:

          gen.writeEndArray();
          // output: ]
          // your post had a typo here which I have fixed
          // using writeEndArray rather than writeArrayEnd

          gen.writeEndObject();
          // output:
          // remove this line


          Please note that JSONGenerator is almost never the correct choice for the job. It is almost universally simpler, easier to read, and better performance to just use out of the box serialization/deserialization. For example, here you could write just one line:



          String payload = JSON.serialize(new List<Object> 
          new Map<String, String> 'hello' => 'world'
          );





          share|improve this answer















          Right now, you open an object before opening your array. An object must consist of field value pairs. Here is an annotated version of what you wrote above, with your three typos corrected.



          gen.writeStartObject();
          // output:
          // remove this line

          gen.writeStartArray();
          // output: [
          // your post had a typo here which I have fixed
          // using writeStartArray rather than writeArrayStart

          gen.writeStartObject();
          // output:

          gen.writeStringField('hello', 'world');
          // output: "hello": "world"
          // your post had a typo here which I have fixed
          // using writeStringField rather than writeStringFeild

          gen.writeEndObject();
          // output:

          gen.writeEndArray();
          // output: ]
          // your post had a typo here which I have fixed
          // using writeEndArray rather than writeArrayEnd

          gen.writeEndObject();
          // output:
          // remove this line


          Please note that JSONGenerator is almost never the correct choice for the job. It is almost universally simpler, easier to read, and better performance to just use out of the box serialization/deserialization. For example, here you could write just one line:



          String payload = JSON.serialize(new List<Object> 
          new Map<String, String> 'hello' => 'world'
          );






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 7 hours ago

























          answered 8 hours ago









          Adrian LarsonAdrian Larson

          115k19 gold badges133 silver badges272 bronze badges




          115k19 gold badges133 silver badges272 bronze badges










          • 1





            Also its writeStartArray and writeEndArray

            – salesforcesas
            8 hours ago











          • Thank you Adrian!

            – muchavie
            7 hours ago






          • 1





            @muchavie If this answer addressed your problem, please consider accepting it by clicking on the check mark/tick to the left of the answer, turning it green. This marks the question as resolved to your satisfaction, and awards reputation both to you and the person who answered. If you have >= 15 reputation points, you may also upvote the answer if you wish. There is no obligation to do either.

            – Adrian Larson
            7 hours ago












          • 1





            Also its writeStartArray and writeEndArray

            – salesforcesas
            8 hours ago











          • Thank you Adrian!

            – muchavie
            7 hours ago






          • 1





            @muchavie If this answer addressed your problem, please consider accepting it by clicking on the check mark/tick to the left of the answer, turning it green. This marks the question as resolved to your satisfaction, and awards reputation both to you and the person who answered. If you have >= 15 reputation points, you may also upvote the answer if you wish. There is no obligation to do either.

            – Adrian Larson
            7 hours ago







          1




          1





          Also its writeStartArray and writeEndArray

          – salesforcesas
          8 hours ago





          Also its writeStartArray and writeEndArray

          – salesforcesas
          8 hours ago













          Thank you Adrian!

          – muchavie
          7 hours ago





          Thank you Adrian!

          – muchavie
          7 hours ago




          1




          1





          @muchavie If this answer addressed your problem, please consider accepting it by clicking on the check mark/tick to the left of the answer, turning it green. This marks the question as resolved to your satisfaction, and awards reputation both to you and the person who answered. If you have >= 15 reputation points, you may also upvote the answer if you wish. There is no obligation to do either.

          – Adrian Larson
          7 hours ago





          @muchavie If this answer addressed your problem, please consider accepting it by clicking on the check mark/tick to the left of the answer, turning it green. This marks the question as resolved to your satisfaction, and awards reputation both to you and the person who answered. If you have >= 15 reputation points, you may also upvote the answer if you wish. There is no obligation to do either.

          – Adrian Larson
          7 hours ago

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Salesforce Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f271469%2fhow-do-i-use-json-generator-to-generate-an-unnamed-array%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          ParseJSON using SSJSUsing AMPscript with SSJS ActivitiesHow to resubscribe a user in Marketing cloud using SSJS?Pulling Subscriber Status from Lists using SSJSRetrieving Emails using SSJSProblem in updating DE using SSJSUsing SSJS to send single email in Marketing CloudError adding EmailSendDefinition using SSJS

          Кампала Садржај Географија Географија Историја Становништво Привреда Партнерски градови Референце Спољашње везе Мени за навигацију0°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.340°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.34МедијиПодациЗванични веб-сајту

          19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу