0

我想将数据从 c#(aspx) 发送到 android 应用程序。

我的 c#(aspx) 页面有从 android 应用程序调用的代码,它从 sql 数据库中检索值并使用 DataSet 将其放入 XML 文件中,然后将 xml 文件返回给 android 应用程序。

从数据库中检索数据并存储在 xml 中的代码如下:

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Xml;
using System.IO;

class ExecuteXmlReader
{
public static void Main()
{
String sConnection = "server=.\\SQLExpress;Integrated Security=SSPI;database=employee";
SqlConnection mySqlConnection = new SqlConnection(sConnection);
mySqlConnection.Open();

// Get the same data through the provider.
SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter("SELECT FirstName,LastName,Title,City from employees", sConnection);
DataSet myDataSet2 = new DataSet();myDataSet2.DataSetName = "Region";
mySqlDataAdapter.Fill(myDataSet2);


// Write data to files: data1.xml and data2.xml for comparison.

myDataSet2.WriteXml("c:/temp/employees.xml");
mySqlConnection.Close();
}

}

现在我如何将此 xml 文件返回到 android 应用程序。在android中,我DOM XML parser用来从文件中提取数据。

请帮助我..任何提示都将被接受。

4

1 回答 1

0

使用它,它有示例 wcf webservice 在 android- http: //fszlin.dymetis.com/post/2010/05/10/Comsuming-WCF-Services-With-Android.aspx.hope这可以帮助你

于 2013-06-03T10:25:16.070 回答