19

我最近需要将数据表序列化为 JSON。我在哪里,我们仍然在 .Net 2.0 上,所以我不能在 .Net 3.5 中使用 JSON 序列化程序。我想这一定是以前做过的,所以我上网查了一下,发现许多不同 选择。其中一些依赖于一个额外的库,我很难在这里推进。其他人需要先转换为List<Dictionary<>>,这似乎有点尴尬和不必要。另一个将所有值视为字符串。出于某种原因,我无法真正落后于他们中的任何一个,所以我决定推出自己的,发布在下面。

正如您从阅读//TODO评论中看到的那样,它在一些地方是不完整的。这段代码已经在这里生产了,所以它在基本意义上是“工作”的。它不完整的地方是我们知道我们的生产数据当前不会命中它的地方(数据库中没有时间跨度或字节数组)。我在这里发布的原因是我觉得这可以更好一些,我希望帮助完成和改进这段代码。欢迎任何输入。

请注意,此功能内置于 .Net 3.5 及更高版本中,因此今天使用此代码的唯一原因是您仍受限于 .Net 2.0。即便如此,JSON.Net 已经成为这类事情的 goto 库。

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("\"", @"\""") + "\"";
    }
}

更新:
这已经过时了,但我想指出一些关于这段代码如何处理日期的事情。我当时使用的格式是有道理的,因为网址中有确切的理由。但是,该理由包括以下内容:

老实说,JSON Schema 通过将字符串“子类型化”为日期文字成为可能,确实解决了这个问题,但这仍在进行中,要实现任何重大采用都需要时间。

嗯,时间已经过去了。今天,可以只使用ISO 8601日期格式。我不会费心更改代码,因为真的:这是古老的。只需使用 JSON.Net。

4

3 回答 3

5

如果它是 Microsoft 的.NET 2.0 的 AJAX 扩展,它会帮助你说服你的老板安装一个库吗?

其中包括System.Web.Script.Serialization.JavascriptSerializer,用于您帖子最后一个链接的第 4 步。

于 2009-01-16T21:59:19.743 回答
2

嘿伙计,这一切都在 Rick 的博客文章Serializing DataTable using Json.NET中。他详细解释了如何使用James Newton King的Json.NET来完成它。

于 2009-01-22T03:58:18.810 回答
1

我发现了这个:http : //www.bramstein.com/projects/xsltjson/ 您可以将数据表转换为 xml 并使用 xslt 样式表将 xml 转换为 json。

这更像是一种解决方法,而不是真正的解决方案。

于 2009-01-16T18:47:48.337 回答