DataTable to JSON - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T12:36:31Z http://stackoverflow.com/feeds/question/451460 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/451460/datatable-to-json 2 DataTable to JSON Joel Coehoorn 2009-01-16T18:28:32Z 2009-02-13T14:41:59Z <p>I recently needed to serialize a datatable to JSON. Where I'm at we're still on .Net 2.0, so I can't use the JSON serializer in .Net 3.5. I figured this must have been done before, so I went looking online and <a href="http://www.codeproject.com/KB/aspnet/ASPNET_DataTable_to_JSON.aspx" rel="nofollow">found</a> a <a href="http://www.dennydotnet.com/post/A-DataTable-Serializer-for-ASPNET-AJAX.aspx" rel="nofollow">number</a> of <a href="http://schotime.net/blog/index.php/2008/07/27/dataset-datatable-to-json/" rel="nofollow">different</a> <a href="http://geekswithblogs.net/shahed/archive/2008/03/22/120709.aspx" rel="nofollow">options</a>. Some of them depend on an additional library, which I would have a hard time pushing through here. Others require first converting to <code>List&lt;Dictionary&lt;&gt;&gt;</code>, which seemed a little awkward and needless. Another treated all values like a string. For one reason or another I couldn't really get behind any of them, so I decided to roll my own, which is posted below. </p> <p>As you can see from reading the <code>//TODO</code> comments, it's incomplete in a few places. This code is already in production here, so it does "work" in the basic sense. The places where it's incomplete are places where we know our production data won't currently hit it (no timespans or byte arrays in the db). The reason I'm posting here is that I feel like this can be a little better, and I'd like help finishing and improving this code. Any input welcome.</p> <pre><code>public static class JSONHelper { public static string FromDataTable(DataTable dt) { string rowDelimiter = ""; StringBuilder result = new StringBuilder("["); foreach (DataRow row in dt.Rows) { result.Append(rowDelimiter); result.Append(FromDataRow(row)); rowDelimiter = ","; } result.Append("]"); return result.ToString(); } public static string FromDataRow(DataRow row) { DataColumnCollection cols = row.Table.Columns; string colDelimiter = ""; StringBuilder result = new StringBuilder("{"); for (int i = 0; i &lt; cols.Count; i++) { // use index rather than foreach, so we can use the index for both the row and cols collection result.Append(colDelimiter).Append("\"") .Append(cols[i].ColumnName).Append("\":") .Append(JSONValueFromDataRowObject(row[i], cols[i].DataType)); colDelimiter = ","; } result.Append("}"); return result.ToString(); } // possible types: // http://msdn.microsoft.com/en-us/library/system.data.datacolumn.datatype(VS.80).aspx private static Type[] numeric = new Type[] {typeof(byte), typeof(decimal), typeof(double), typeof(Int16), typeof(Int32), typeof(SByte), typeof(Single), typeof(UInt16), typeof(UInt32), typeof(UInt64)}; // I don't want to rebuild this value for every date cell in the table private static long EpochTicks = new DateTime(1970, 1, 1).Ticks; private static string JSONValueFromDataRowObject(object value, Type DataType) { // null if (value == DBNull.Value) return "null"; // numeric if (Array.IndexOf(numeric, DataType) &gt; -1) return value.ToString(); // TODO: eventually want to use a stricter format // boolean if (DataType == typeof(bool)) return ((bool)value) ? "true" : "false"; // date -- see http://weblogs.asp.net/bleroy/archive/2008/01/18/dates-and-json.aspx if (DataType == typeof(DateTime)) return "\"\\/Date(" + new TimeSpan(((DateTime)value).ToUniversalTime().Ticks - EpochTicks).TotalMilliseconds.ToString() + ")\\/\""; // TODO: add Timespan support // TODO: add Byte[] support // string/char return "\"" + value.ToString().Replace(@"\", @"\\").Replace(Environment.NewLine, @"\n").Replace("\"", @"\""") + "\""; } } </code></pre> http://stackoverflow.com/questions/451460/datatable-to-json/451509#451509 0 Answer by tuinstoel for DataTable to JSON tuinstoel 2009-01-16T18:47:48Z 2009-01-16T18:47:48Z <p>I found this: <a href="http://www.bramstein.com/projects/xsltjson/" rel="nofollow">http://www.bramstein.com/projects/xsltjson/</a> You can convert your datatable to xml and use a xslt stylesheet to convert the xml to json. </p> <p>It is more a workaround than a real solution. </p> http://stackoverflow.com/questions/451460/datatable-to-json/452210#452210 1 Answer by R. Bemrose for DataTable to JSON R. Bemrose 2009-01-16T21:59:19Z 2009-01-16T21:59:19Z <p>Would it help you convince your bosses to install a library if it's Microsoft's <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ca9d90fa-e8c9-42e3-aa19-08e2c027f5d6&amp;displaylang=en" rel="nofollow">AJAX extensions for .NET 2.0</a>?</p> <p>Included in them is <a href="http://msdn.microsoft.com/en-us/library/system.web.script.serialization.javascriptserializer.aspx" rel="nofollow">System.Web.Script.Serialization.JavascriptSerializer</a>, which is used in Step 4 of the <a href="http://geekswithblogs.net/shahed/archive/2008/03/22/120709.aspx" rel="nofollow">last link</a> in your post.</p> http://stackoverflow.com/questions/451460/datatable-to-json/468004#468004 1 Answer by TheVillageIdiot for DataTable to JSON TheVillageIdiot 2009-01-22T03:58:18Z 2009-01-22T14:46:31Z <p>Hey budy, its is all here in Rick's blog post <a href="http://www.west-wind.com/Weblog/posts/471835.aspx" rel="nofollow">Serializing DataTable using Json.NET</a>. He explains in detail how you can accomplish it using <a href="http://www.codeplex.com/Json" rel="nofollow">Json.NET</a> from <a href="http://james.newtonking.com/" rel="nofollow">James Newton King</a>.</p>