In this post, we want to discuss the efficient way to convert DataTable to JSON String using C#. Before we get started, if you want to know about exporting GridView data to Excel, please go through the following article: Export GridView to Excel with advanced features.
JavaScript Object Notation (JSON) is a lightweight data interchange format. It is easy for humans to read and write and easy for machines to parse and generate. JSON is a text format that is completely language-independent but uses conventions that are familiar to programmers of the C family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and so on.
Method 1: Convert DataTable to JSON using StringBuilder. This is how the JSON sample data looks: {“firstName”: “Satinder”, “lastName”: “Singh”}. JSON objects are written inside curly braces and can contain multiple name/value pairs. So using StringBuilder we can create a similar JSON Structured String. Since we are using StringBuilder we need to import the System. Text namespace in our page as in the following: Using System.Text;
The following code will generate a JSON string. Here we are making a for loop over our DataTable rows and columns. Fetch the data (values) and append it to our JSONString StringBuilder. This is how our code looks:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
public String DataTableToJSONWithStringBuilder(String sJON_Name,DataTable table) { var JSONString = new StringBuilder(); JSONString.Append("{"); if (table.Rows.Count > 0) { JSONString.Append("\""+sJON_Name+"\" : ["); for (Int32 i = 0; i < table.Rows.Count; i++) { JSONString.Append("{"); for (Int32 j = 0; j < table.Columns.Count; j++) { if (j < table.Columns.Count - 1) { JSONString.Append("\"" + table.Columns[j].ColumnName.ToString() + "\":" + "\"" + table.Rows[i][j].ToString() + "\","); } else if (j == table.Columns.Count - 1) { JSONString.Append("\"" + table.Columns[j].ColumnName.ToString() + "\":" + "\"" + table.Rows[i][j].ToString() + "\""); } } if (i == table.Rows.Count - 1) { JSONString.Append("}"); } else { JSONString.Append("},"); } } JSONString.Append("]"); } JSONString.Append("}"); return JSONString.ToString(); } |
Method 2: Convert the DataTable to JSON using JavaScriptSerializer. Since we are using JavaScriptSerializer we first need to import the System.Web.Script.Serialization namespace into our page as in the following code: using System.Web.Script.Serialization;
The JavaScriptSerializer class is used internally by the asynchronous communication layer to serialize and deserialize the data. To serialize an object, use the Serialize method. To deserialize a JSON string, use the Deserialize or DeserializeObject methods. Here we use the serialize method to get the JSON format data. So our code looks as in the following:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
public string DataTableToJSONWithJavaScriptSerializer(DataTable table) { JavaScriptSerializer jsSerializer = new JavaScriptSerializer(); List < Dictionary < string, object >> parentRow = new List < Dictionary < string, object >> (); Dictionary < string, object > childRow; foreach(DataRow row in table.Rows) { childRow = new Dictionary < string, object > (); foreach(DataColumn col in table.Columns) { childRow.Add(col.ColumnName, row[col]); } parentRow.Add(childRow); } return jsSerializer.Serialize(parentRow); } |
Method 3: Convert DataTable to JSON using JSON.Net DLL (Newtonsoft). Now in this method, we will convert our C# Datatable to JSON using the Newtonsoft DLL. For this first, we need to download JSON.Net DLL. We can download it from Nuget.org and then import the Newtonsoft.JSON namespace into our page as in the following code. JSON.NET is a popular high-performance JSON framework for .NET.
1 2 3 4 5 6 7 8 9 |
using Newtonsoft.JSON; public string DataTableToJSONWithJSONNet(DataTable table) { string JSONString=string.Empty; JSONString = JSONConvert.SerializeObject(table); return JSONString; } |
Leave a Comment