|
|
stackoverflow.com
- 2012-12-04 10:30:01
- Similar
- Report/Block
I'm working on a REST API in Spring MVC 3.2RC1. I'm fetching a JPA entity with a org.joda.time.DateTime timestamp in it and let Spring serialise it into JSON using @RequestMapping(value = "/foobar", method = RequestMethod.GET, produces = "application/json") @ResponseBody Using the default Jackson2 settings in Spring as I've only added co...
|
|
|
stackoverflow.com
- 2012-02-23 12:41:59
- Similar
- Report/Block
I want to parse the date for entries given by SVN: svn list --xml https://subversion:8765/svn/Foo/tags/ If I am not mistaken it is given using the ISO 8601 standard. An example is: dateString = "2012-02-14T11:22:34.593750Z" I am using Python 2.7 and am looking for the best way to process is using the standard modules only. I think I´ll p...
|
|
|
stackoverflow.com
- 2012-06-02 19:53:41
- Similar
- Report/Block
I looked through all possible answer here but I am having hard time to figure this thing out. I have Json date in a String. I want to convert into a Java Date without losing time. Also I would like to convert from Java Date to Json Date string. Here what I have. String jsonDateString = "/Date(1295157600000-0600)/";...
|
|
|
|
stackoverflow.com
- 2012-05-01 17:24:25
- Similar
- Report/Block
I have an issue with converting time string I get from JSON to another format. Somehow the date is set to minus 24 hours. Here's object from JSON [date] => 2011-07-02T00:00:00+02:00 I'm using strtotime() date() date('l, d F Y', strtotime($day->date)); But the output looks like this FRIDAY, 01 JULY 2011 Obviously the date in JSON is...
|
|
|
stackoverflow.com
- 2012-03-19 22:17:23
- Similar
- Report/Block
I would like to change the entity property from String to long. I have seen Nick answering similar problem in Change IntegerProperty to FloatProperty of existing AppEngine DataStore but I am writing in Java and need some code example since I don't know anything about the mapreduce. e.g. we want to change userId from String to Long of thi...
|
|
|
stackoverflow.com
- 2012-03-08 16:48:08
- Similar
- Report/Block
I'm doing this for two hours and nothing. This is the date in Json: "\/Date(1330355834000+0100)\/" Everything I found was withouf=t timezone or for JavaScript. How to convert it to DateTime (not Date)?...
|
|
|
stackoverflow.com
- 2009-08-06 22:02:02
- Similar
- Report/Block
There is not a single clear example that explains how to pull json data as simple as possible. I have a valid json and I need to retrieve it with jquery my json output is as: "title": "blog entries", "items" : [ { "title": "Can Members of the Diaspora Work Effectively at th", "date": "8/4/2009 9:42:...
|
|
|
|
stackoverflow.com
- 2012-03-31 18:29:44
- Similar
- Report/Block
I'm trying out the HighStock library for creating stock charts. To fill the chart with data, their example specifies this source . The first parameter is unixtime in milliseconds and the second parameter is the stock closing price. I don't know if this is valid json, but I would argue that the following would be a more appropriate way of...
|
|
|
stackoverflow.com
- 2013-02-26 04:01:33
- Similar
- Report/Block
Hi I am very poor at building JSON data as I wanted to understand JSON better. I have read JSON.org but it is very limited in information. Therefore I have poor understanding JSON. However I am closer to getting the result. $data = array('title'=>'JSON Sample Data', 'items'=> array('name' => 'text','value' => 'text date'), ('name' => 'int...
|
|
|
stackoverflow.com
- 2012-05-29 06:15:23
- Similar
- Report/Block
Hi all, I'm getting my data onto webservice, but I'm having some trouble with the JSON data that is returned for Date data types. Basically, the string back that looks like this: /Date(1154970000000+0700)/ How can i format it to dd/mm/yyyy in java. Thanks!...
|
|
|
stackoverflow.com
- 2013-03-15 17:06:20
- Similar
- Report/Block
I have json data like following title: 'This is title', desc: 'This is desc', date: '07:12' }, title: 'This is title2', desc: 'This is desc2', date: '04:12' }, title: 'This is title3', desc: 'This is desc3', date: '09:12' Now I want to loop through this data to display using underscorejs templates. I am trying following which i...
|
|
|
stackoverflow.com
- 2010-12-22 18:13:00
- Similar
- Report/Block
I have a following piece of JSON: \/Date(1293034567877)\/ which is a result of this .NET code: var obj = DateTime.Now; var serializer = new System.Web.Script.Serialization.JavaScri ptSerializer(); serializer.Serialize(obj).Dump(); Now the problem I am facing is how to create a Date object from this in JavaScript. All I could find was incr...
|
|
|
|
hardforum.com
- 2013-03-15 10:43:53
- Similar
- Report/Block
I'm having problems getting the date to appear correctly in my batch files. I am creating a rar backup of a folder and I want the date to appear in the filename. I have tried using the %date% variable as well as more advanced versions of "date" such as: MYDATE=%DATE:~0,2%%DATE:~3,2%%DATE:~8,4% MYDATE=%date:~0,4%%date:~5,2%%date:~8,2% MYDA...
|
|
|
stackoverflow.com
- 2012-01-24 12:25:05
- Similar
- Report/Block
I am looking to use the Rich:Calendar in my JSF app. I am planning to use the CalendarDataModel to restrict selection of some dates like weekends, holidays etc. The date format that we use is based on Joda Time. The issue is that the Rich:Calendar is based on JDK Calendar, so i am thinking to use the JDK Calendar for the display and conve...
|
|
|
stackoverflow.com
- 2012-03-29 04:31:28
- Similar
- Report/Block
I have this class in JavaScript: series: [{ name: 'Stack OverFlow', data: [ [Date.UTC(1970, 9, 27), 0 ], [Date.UTC(1970, 10, 10), 0.6 ], [Date.UTC(1970, 10, 18), 0.7 ], [Date.UTC(1970, 11, 2), 0.8 ], [Date.UTC(19...
|
|
|
stackoverflow.com
- 2012-04-14 07:20:47
- Similar
- Report/Block
I was doing some test with json and ran into serveral issues. hope somebody on this mailing list can help out. localStorage[LOC] = JSON.stringify(track); var boy = localStorage[LOC]; alert(boy); This is the data I get back [{"lat":42.5877511,"lng":-71.7873177,"ac c":67,"date":"Sat Apr 14 2012 01:03:46 GMT-0400 (EDT)"}] I was wondering ho...
|
|
|
stackoverflow.com
- 2012-03-28 00:52:24
- Similar
- Report/Block
Context Language: C# Platform Version: Microsoft .Net Framework 4.0 Operating System: Windows 7 Professional (64-bit) Constraints: Microsoft MVC.Net 3.0 Problem I find myself looking at JSON a lot in a browser these days, pointing a browser at one Controller Action or another on my local dev server and parsing JSON visually to make sure e...
|
|
|
stackoverflow.com
- 2012-05-14 16:38:31
- Similar
- Report/Block
I am using Newtonsoft.Json with version 4.0.8 and trying to use it with Web API. So i wanted to deserialize JSON with JsonConvert.DeserializeObject<AClass& gt;(jsonString); This works until i added a Dictionary as property to this class and wanted to deserialize it. The json string is in the form of "Date":null, "AString":"message",...
|
|
|
|
stackoverflow.com
- 2012-03-01 04:47:27
- Similar
- Report/Block
Using knockout's mapping plugin, how would I go about displaying the information from and array of JSON object's in my template.? //Example JSON data. JSON = [{'title':'title of first object', 'content':'content of first json object'}, {'title':'title of second object', 'content': 'content of second json object'}] var viewModel = ko.mappi...
|
|
|
stackoverflow.com
- 2012-06-10 14:17:23
- Similar
- Report/Block
I am using the javascript JSON.stringify function with a replacer (second parameter) to format date values in a certain way: var s = JSON.stringify(data, function (key, value) { if (key === "") return value; if (jQuery.type(value) === "date") return "Date(" + value.getTime() + ")"; return value; }); I have valid datetime values in my...
|
|
|
stackoverflow.com
- 2012-03-12 13:48:00
- Similar
- Report/Block
I have the below Json (wf.json) "workflow":{ "template":"Analysis1", "start":{ "instance":"HDA_run1", "user":"symtest", "date":"3-Mar-2012", "timestamp":"1330948220475" }, "host":{ "name":"bartla", "user":"symtest1", "password":"symtest1", "installpath":"",...
|
|
|
|
stackoverflow.com
- 2012-03-25 12:31:09
- Similar
- Report/Block
I have noticed a problem over the past couple of days where my dates submitted to an sql server database are wrong. I have a webpage, where users can book facilities. This webpage takes a name, a date, a start time and an end time(BookingID is required for transactions but generated by database), which I format as a JSON string as follows...
|
|
|
stackoverflow.com
- 2012-10-11 21:40:20
- Similar
- Report/Block
I'm trying to display an expiry date on a passbook coupon. This is the first passbook pass I've created. For some reason, the date isn't showing up on the pass. Screenshot: http://screencast.com/t/looDjpqT JSON Code for Date: "secondaryFields" : [ "dateStyle" : "PKDateStyleMedium", "isRelative" : true, "key" : "expires", "label" : "V...
|
|
|
stackoverflow.com
- 2012-04-16 06:07:40
- Similar
- Report/Block
Using the dead simple tutorial on Heroku's website and when I run git push heroku master I receive the following error: Using Node.js version: 0.4.7 Using npm version: 1.0.106 -----> Fetching Node.js binaries -----> Vendoring node into slug -----> Installing dependencies with npm npm ERR! Couldn't read dependencies. npm ERR...
|
|
|
|
stackoverflow.com
- 2012-09-04 12:51:28
- Similar
- Report/Block
I have a custom object with name DateTime . I register TypeAdapter with method registerTypeAdapter . I think GSON ignores this adapter . GSON how to detect date in json object ? is it required establishing any link between adapter and format of string in json ? builder.registerTypeAdapter(DateTime.cla ss, new JsonDeserializer<DateTime&...
|
|
|
stackoverflow.com
- 2013-03-04 10:00:22
- Similar
- Report/Block
I have a JSON file that looks like this: "Algeriet" : "name" : "Nyårsdagen", "date" : "2013-01-01", "ID" : "1" }, "name" : "Mawlid En Nabaoui Echarif", "date" : "2013-01-24", "ID" : "2" }, "name" : "Första maj", "date" : "2013-05-01", "ID" : "3" }, ... Now I would like to begin incrementing the IDs from 0 instead of 1. How c...
|
|
|
semanticweb.com
- 2013-04-17 13:00:31
- Similar
- Report/Block
Kay Ewbank of I Programmer recently wrote , “ JSON Linked Data is getting closer with the publication of two Last Call Working Drafts by the W3C’s RDF Working Group and its JSON-LD Community Group. JSON-LD ava cript bject otation for inking ata) is a lightweight Linked Data format designed to provide context for data and to help JSON dat...
|
|
|
|
stackoverflow.com
- 2012-05-17 06:49:38
- Similar
- Report/Block
MVC4 web api returns json in this format: "Activated":false, "Bio":null, "BirthDate":null, "DateCreated":"\/Date(1337032822970-0700 )\/" I need to return and pass json with a root object. Something like this: "data": { "title": "Department A", "function": "sales", "staff": 3, "employees": [ { "name": "John S", "position": "SE"...
|
|
|
stackoverflow.com
- 2012-05-10 10:42:50
- Similar
- Report/Block
I have two top level arrays, which have the same format. And I want to merge them: json = Jbuilder.encode do |json| json.(companies) do |json, c| json.value c.to_s json.href employee_company_path(c) end json.(company_people) do |json, cp| json.value "#{cp.to_s} (#{cp.company.to_s})" json.href employee_company_path(cp.company) end...
|
|
|
stackoverflow.com
- 2009-04-29 04:04:14
- Similar
- Report/Block
I am returning a List<> from a webservice as a List of JSON objects. I am trying to use a for loop to iterate through the list and grab the values out of the properties. This is a sample of the returning JSON: {"d":[{"__type":"FluentWeb.DTO.EmployeeO rder", "EmployeeName":"Janet Leverling", "EmployeeTitle":"Sales Representative", "R...
|
|
|
|
macupdate.com
- 2013-04-19 06:06:34
- Similar
- Report/Block
Visual JSON is a simple and very easy to use JSON visulization tool for JSON API server/client developers. Using the Visual JSON utility one can access remote or local address to JSON server and refresh its result with a click. Or just paste raw JSON value. You also can test POST method using simple http query expressions. Good luck for...
|
|
|
commandlinefu.com
- 2013-04-24 02:28:55
- Similar
- Report/Block
$ python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < file.yaml > file.json Converts YAML file to JSON. Note that you'll need to install PyYAML. Also some YAML data types (like dates) are not supported by JSON). View this command to comment, vote or add to favourites View all commands by tebeka by D...
|
|
|
stackoverflow.com
- 2012-03-25 08:53:21
- Similar
- Report/Block
I have been working on a json decode issue (which I have already had assistance with thanks very much :http://stackoverflow.com/questions/9849 562/php-json-decode-brings-back-null) but I find I have another problem getting the assoc array brought back by the json decode to work properly. Am I doing something wrong or is it the array?? Here...
|
|
|
|
stackoverflow.com
- 2012-03-30 22:39:56
- Similar
- Report/Block
I've got fullcalendar set to query a db and return json with just a title, and start date, and this renders just fine in Chrome. However, under IE8,9, and FF11,12, I dont see any events. I even tried to dummy up the data and manually import it to make sure it wasnt my php. ec2-23-20-230-58.compute-1.amazonaws.com /default.html ^^^^ This pa...
|
|
|
stackoverflow.com
- 2012-02-23 07:20:12
- Similar
- Report/Block
In my project, there are several datetime typed fields , like a flight's departure/arrival date and time, which should be exactly the same whereever a user edit them. I use ASP.NET MVC3 and dojo to build up the application. At back end, I can handle the given value as UTC time and save it to DB. But when it passed to front end using Json,...
|
|
|
stackoverflow.com
- 2012-04-05 23:50:08
- Similar
- Report/Block
I'm trying to read legacy JSON code using Jackson 2.0-RC3, however I'm stuck with reading "embed" object. Given following JSON: "title": "Hello world!", "date": "2012-02-02 12:23:34". "author": "username", "author_avatar": "http://.../", "author_group": 123, "author_prop": "value" How can I map it into following st...
|
|
|
|
webcyou.com
- 2013-04-07 13:29:36
- Similar
- Report/Block
JSONとは、「JavaScript Object Notation」の略で「ジェイソン」といいます。 JSON は、数値や文字列や配列やオブジェクトなどのデータを、文字列で表現できる軽量なフォ ーマットであり、XMLと比べると簡潔に構造化されたデータを記述することができるた め、人間が理解しやすいデータフォーマットであり、JavaScriptのオブジェク トと文字列の相互変換が柔軟にあつかえます。 それでは早速記述してみましょう。 JSONデータを変換 var str = '{ "ary":[0,1,2], "obj": { "a":0,"b":1,"c":2 } }', obj = JSON.parse(str); console.log(obj.ary); conso...
|
|
|
cyberforum.ru
- 2013-02-11 11:04:49
- Similar
- Report/Block
Есть в библиотеке JSON.NET (Newtonsoft.JSON) функция для проверки валидности JSON? А то конвертирование невалидной JSON приводит к исключениям. Задача не настолько серьёзная, чтобы тратить кучу времени на штудирование интерфейсов.
|
|
|
cyberforum.ru
- 2013-03-11 16:12:30
- Similar
- Report/Block
Итак у нас есть два стандартных маршалера, которые преобразовывают объекты в xml и в json. Код: @Path("/actors") public class RestService extends Actor { @GET @Path("/xml") @Produces("application/xml") public Actor getActorXml() { return new Actor("Name", "Surname", new Date(), "Male"); @GET @Path("/json") @Produces("application/j...
|
|
|
|
cyberforum.ru
- 2013-03-01 15:50:42
- Similar
- Report/Block
Добрый день, подскажите, почему нер аботает адобовский класс JSON Есть код Код: var d:JSON = new JSON(); var attparam = d.parse(newAttr); В результате Код: trae(attparam ); и любые другие вариации возвращают undefined. С строкой json все нормально, так как другой (сторонний класс json lite) его разбирает. Погуглив нашел тему с похожей о...
|