Package org.json

Examples of org.json.JSONObject.trim()


           
            // Remove EOL at end of _id attribute. This is to avoid
            // issues with some editors (vi) that automatically add an EOL
            // at the end of a text file.
            if( "_id".equals(key) ) {
              value = value.trim();
            }
           
            this.jsonObj.put(key, value);
          }
        } else {
View Full Code Here


           
            if( "_id".equals(key) ){
              // It is not likely that preceding and trailing
              // spaces are intended for document identififer.
              // They cause way too much trouble.
              value = value.trim();
            }
           
            this.jsonObj.put(key, value);
          }
        } else {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.