Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the JSON library provided here http://www.json.org/java/index.html to convert a json string I have to CSV. But the problem I have is, the order of the keys is lost after conversion.

This is the conversion code:

    JSONObject jo = new JSONObject(someString);
    JSONArray ja = jo.getJSONArray("items");
    String s = CDL.toString(ja);
    System.out.println(s);

This is the content of "someString":

{
    "items":
    [
        {
            "WR":"qwe",
            "QU":"asd",
            "QA":"end",
            "WO":"hasd",
            "NO":"qwer"
        },
    ]
}

This is the result:

WO,QU,WR,QA,NO
hasd,asd,qwe,end,qwer

While what I expect is to keep the order of the keys:

WR,QU,QA,WO,NO
qwe,asd,end,hasd,qwer

Is there any way I can have this result using this library? If not, is there any other library that will provide the capability to keep the order of keys in the result?

share|improve this question
1  
Dictionaries are unsorted. I don't even think JSON guarantees order. – Falmarri Dec 23 '10 at 3:47
thanks for the info. But I have no choice but to use JSON in my application and my application needs to keep the order of the keys :( – Hery Dec 23 '10 at 5:17

5 Answers

You can't. (And if you can, you shouldn't)

In JSON, an object is defined thus:

An object is an unordered set of name/value pairs.

See http://json.org.

Most implementations of JSON make no effort to preserve the order of an object's name/value pairs, since it is (by definition) not significant.

If you want order to be preserved, you need to redefine your data structure; e.g.

{
    "items":
    [
        [
            {"WR":"qwe"},
            {"QU":"asd"},
            {"QA":"end"},
            {"WO":"hasd"},
            {"NO":"qwer"}
        ],
    ]
}

FOLLOWUP

Thanks for the info, but I have no choice but to use JSON in my application and my application needs to keep the order of the keys regardless of the definition of JSON object... I am not allowed to change the format of the JSON file as well...

You need to have a hard conversation with whoever designed that file structure and won't let you change it. It is / they are plain wrong. You need to convince them.

If they really won't let you change it:

  • You should insist on not calling it JSON ... 'cos it isn't.
  • You should point out that you are going to have to write / modify code specially to handle this "not JSON" format ... unless you can find some JSON implementation that preserves the order. If they are a paying client, make sure that they pay for this extra work you have to do.
  • You should point out that if the "not JSON" needs to be used by some other tool, it is going to be problematic. Indeed, this problem will occur over and over ...

This kind of thing as really bad. On the one hand, your software will be violating a well established / long standing specification that is designed to promote interoperability. On the other hand, the nit-wits who designed this lame (not JSON!) file format are probably slagging off other people's systems etc 'cos the systems cannot cope with their nonsense.

share|improve this answer
Thanks for the info, but I have no choice but to use JSON in my application and my application needs to keep the order of the keys regardless of the definition of JSON object... I am not allowed to change the format of the JSON file as well... – Hery Dec 23 '10 at 5:19
Just noticed your edit. I appreciate the advice, but the "JSON-like" format really cannot be changed... So I just have to suck it up haha – Hery Dec 23 '10 at 16:14
2  
@Hery - bill them :-) – Stephen C Nov 15 '11 at 7:39
@StephenC : Nice answer. I am struggling with the same problem and its creating duplicity in my paginated ListView. What the heck !!! No solutions ? – Yogesh Somani Nov 8 '12 at 6:02
1  
@YogeshSomani - the "solution" is to get hold of a proper JSON library, and "hack" it so that it preserves the key order. See gary's answer for an example. But you shouldn't expect a standard JSON library to do this because it is a BAD IDEA to encourage abuse of the JSON specification like this. The real solution is to fix your application to use JSON properly. – Stephen C Nov 8 '12 at 7:20
up vote 2 down vote accepted

Solved.

I used the JSON.simple library from here https://code.google.com/p/json-simple/ to read the JSON string to keep the order of keys and use JavaCSV library from here http://sourceforge.net/projects/javacsv/ to convert to CSV format.

share|improve this answer
can u give example for code.google.com/p/json-simple – shivang May 19 '12 at 5:18
I'm surprised that this worked. According to my reading of both the code and comments of the JSONObject class (code.google.com/p/json-simple/source/browse/trunk/src/main/java/…), it doesn't do anything to preserve the order of the keys. – Stephen C Nov 8 '12 at 6:58
I didn't specify the full solution here, but the gist of it is that json-simple provides a factory with which you can specify the data structure used to store json objects. Simply specify to use LinkedHashMap. – Hery Nov 8 '12 at 13:58

It is quiet simple. to maintain order. I got the same problem to get the order to be maintained from DB layer to UI Layer.

Open JSONObject.java file, it uses internally HashMap which doesn't maintain the order.

change it LinkedHashMap

    //this.map = new HashMap();
    this.map = new LinkedHashMap();

It worked for me. Let me know the comments. I have another suggestion to all in the JSON library it self should have another JSONObject class which maintains order like JSONOrderdObject.java kind of. I am very poor in choosing the names.

Thanks GR

share|improve this answer
How to change in source code ? pls help me – shivang May 19 '12 at 5:21
pls give me example for it – shivang May 19 '12 at 6:17
@shivang - he clearly explained that in his answer what you need to change. – Stephen C Nov 8 '12 at 7:00

JSONObject.java takes whatever map you pass. It may be LinkedHashMap or TreeMap and it will take hashmap only when the map is null .

Here is the constructor of JSONObject.java class that will do the checking of map.

 public JSONObject(Map paramMap)
  {
    this.map = (paramMap == null ? new HashMap() : paramMap);
  }

So before building a json object construct LinkedHashMap and then pass it to the constructor like this ,

LinkedHashMap<String, String> jsonOrderedMap = new LinkedHashMap<String, String>();

jsonOrderedMap.put("1","red");
jsonOrderedMap.put("2","blue");
jsonOrderedMap.put("3","green");

JSONObject orderedJson = new JSONObject(jsonOrderedMap);

JSONArray jsonArray = new JSONArray(Arrays.asList(orderedJson));

System.out.println("Ordered JSON Fianl CSV :: "+CDL.toString(jsonArray));

So there is no need to change the JSONObject.java class . Hope it helps somebody .

share|improve this answer

I've improved on my original code as the previous class was not very tolerant and only took the format {"KeyName":"KeyValue","NextKey":"5"} if a value was a number without double quotes the function would not work. This new and improved function will take the format {"KeyName":"KeyValue","NextKey":5} When I get some spare time I'll modify this class so that it will take the format { "KeyName" : "KeyValue" , "NextKey" : 5 } so watch this space. Or if you want to improve in this yourself great I'll be watching this thread.

package com.DevFound;

import org.json.simple.JSONArray;

import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;

public class JSONOriginalOrder {
    private static LinkedHashMap<String, String> jsonOrderedMap = new LinkedHashMap<String, String>();
    private static String myKey = "";
    private static String myVal = "";
    private static boolean firstQuot = false;
    private static boolean isKey = true;
    private static int strPos = 0;

    public static JSONArray fromString(String JSONFormattedString) {
        JSONFormattedString = JSONFormattedString.trim();
        char[] JSONFormattedCharArr = JSONFormattedString.toCharArray();
        if(JSONFormattedCharArr[0] != '{') {return null;}//Illegal first character not equal to '{'
        while(JSONFormattedCharArr[strPos] != '}') {
            strPos++;
            if(isKey == true) { /* get key */
                while(JSONFormattedCharArr[strPos] != '"') { /* lose spaces preceding key */
                    if(JSONFormattedCharArr[strPos] == ' ') {
                        strPos++;
                    }
                    else {return null;} /* Illegal character preceding key value delimiter */
                }//End while(JSONFormattedCharArr[strPos] != '"')
                firstQuot = true;
                strPos++;
                myKey = getKeysOrValsBetweenQuotes(JSONFormattedCharArr);
                isKey = false;
            }//End if(isKey == true)
            if(isKey == false) { /* if(isKey == false) */ /* get value */
                while(JSONFormattedCharArr[strPos] != ':') { /* lose spaces preceding key value delimiter */
                    if(JSONFormattedCharArr[strPos] == ' ') {
                        strPos++;
                    }
                    else {return null;} /* Illegal character preceding key value delimiter */
                }//End while(JSONFormattedCharArr[strPos] != ':')
                strPos++;/* Set first character after key value delimiter */
                while(JSONFormattedCharArr[strPos] != '"') { /* lose spaces after key value delimiter */
                    while(JSONFormattedCharArr[strPos] == ' ') {
                        strPos++;
                    }//End while(JSONFormattedCharArr[strPos] == ' ')
                    if((JSONFormattedCharArr[strPos] < ':') && (JSONFormattedCharArr[strPos] > '/')) {
                        break;
                    }//End if((JSONFormattedCharArr[strPos] < ':') && (JSONFormattedCharArr[strPos] > '/'))
                }//End while(JSONFormattedCharArr[strPos] != '"')
                if(JSONFormattedCharArr[strPos] < ':' && JSONFormattedCharArr[strPos] > '/') { /* is first char of value between 0 and 9 inclusive*/
                    firstQuot = true;
                    myVal = getValsWithoutQuotes(JSONFormattedCharArr);
                    isKey = true;
                }
                else if(JSONFormattedCharArr[strPos] == '"') {
                    firstQuot = true;
                    strPos++;
                    myVal = getKeysOrValsBetweenQuotes(JSONFormattedCharArr);
                    isKey = true;
                }
                else {
                    return null; /* Illegal character */
                }//End if(JSONFormattedCharArr[strPos] < ':' && JSONFormattedCharArr[strPos] > '/')
            }//End if(isKey == false)
            jsonOrderedMap.put(myKey, myVal);
        }//End while(JSONFormattedCharArr[strPos] != '}')
        JSONArray jsonObjectSorted = new JSONArray();
        jsonObjectSorted.add(jsonOrderedMap);
        strPos = 0;
        return jsonObjectSorted;
    }

    public static String getKeysOrValsBetweenQuotes (char[] JSONFormattedCharArr) {
        List<Character> myKey = new ArrayList<Character>();
        while(firstQuot == true) {
            if((JSONFormattedCharArr[strPos] == '"') && (JSONFormattedCharArr[strPos - 1] != '\\')) {
                strPos++;
                return getStringRepresentation(new ArrayList<Character>(myKey));
            }
            else {
                myKey.add(JSONFormattedCharArr[strPos]);
                strPos++;
            }
        }//End while((secondQuot == false) && (firstQuot == true))
        return getStringRepresentation(new ArrayList<Character>(myKey));
    }

    public static String getValsWithoutQuotes (char[] JSONFormattedCharArr) {
        boolean decimalPointFlag = false;
        List<Character> myVal = new ArrayList<Character>();
        while(JSONFormattedCharArr[strPos] < ':' && JSONFormattedCharArr[strPos] > '/') {
            myVal.add(JSONFormattedCharArr[strPos]);
            strPos++;
            if(JSONFormattedCharArr[strPos] == ',') {return getStringRepresentation(new ArrayList<Character>(myVal));}
            if(JSONFormattedCharArr[strPos] == '.' && decimalPointFlag == false) {
                myVal.add(JSONFormattedCharArr[strPos]);
                strPos++;
                if(JSONFormattedCharArr[strPos] == ' ') {return null;} /* Illegal character */
                decimalPointFlag = true;
            }//End if(JSONFormattedCharArr[strPos] == '.' && decimalPointFlag == false)
        }//End while(JSONFormattedCharArr[strPos] < ':' && JSONFormattedCharArr[strPos] > '/')
        return getStringRepresentation(new ArrayList<Character>(myVal));
    }

    /* This function snippet was donated from Vineet Reynolds on Stack Overflow */
    public static String getStringRepresentation(ArrayList<Character> list)
    {
        StringBuilder builder = new StringBuilder(list.size());
        for(Character ch: list)
        {
            builder.append(ch);
        }
        return builder.toString();
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.