我最近需要将数据表序列化为JSON。我现在仍然在.Net 2.0上,因此我无法在.Net 3.5中使用JSON序列化程序。我想这一定让我去寻找在线和已经做过,发现一个数量的不同 选项。其中一些依赖于附加的库,在这里我很难过。其他人则需要先将转换为List<Dictionary<>>,这似乎有点尴尬和不必要。另一个将所有值都视为一个字符串。由于一个或另一个原因,我无法真正落后于任何一个,所以我决定自己动手制作,发布在下面。
List<Dictionary<>>
从阅读//TODO评论中可以看出,在某些地方它是不完整的。该代码已经在此处生产,因此它在基本意义上可以“工作”。它不完整的地方是我们知道生产数据当前不会达到的地方(数据库中没有时间跨度或字节数组)。我在这里发布的原因是,我觉得这样可以做得更好,并且我想帮助完成和改进此代码。任何输入欢迎。
//TODO
请注意,此功能内置于.Net 3.5及更高版本中,因此,今天仍然使用此代码的唯一原因是,如果您仍然限于.Net 2.0。 即使这样,JSON.Net仍已成为此类事情的转到库。
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 < 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) > -1) return value.ToString(); // TODO: eventually want to use a stricter format. Specifically: separate integral types from floating types and use the "R" (round-trip) format specifier // 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 //TODO: this would be _much_ faster with a state machine //TODO: way to select between double or single quote literal encoding //TODO: account for database strings that may have single \r or \n line breaks // string/char return "\"" + value.ToString().Replace(@"\", @"\\").Replace(Environment.NewLine, @"\n").Replace("\"", @"\""") + "\""; } }
更新: 现在已经很老了,但是我想指出一些有关此代码如何处理日期的信息。当时,我使用的格式对于url中的确切原理很有意义。但是,该理由包括以下内容:
坦率地说,JSON Schema通过将字符串“子类型化”为日期文字确实解决了该问题,但这仍在进行中,并且需要很长时间才能被广泛采用。
好吧,时间已经过去了。今天,只使用ISO 8601日期格式就可以了。我不会去更改代码,因为确实如此:这很古老。只需使用JSON.Net。
如果它是.NET 2.0的Microsoft AJAX扩展,是否可以帮助您说服老板安装库?
其中包含的是System.Web.Script.Serialization.JavascriptSerializer,该功能在帖子中最后一个链接的第4步中使用。