如何使用 JSON 将记录插入 SQL 数据库
假设我在字符串数组中存储一个名称列表,例如:“abc”、“bcd”、“gdf”...。我有一个 Android 应用程序,它显示每个值以及一个复选框。我需要将字符串数组转换为 JSON 字符串,以便可以将其存储在远程数据库中。现在我正在 localhost 上使用 SQL Server 创建的数据库。我需要使用 Web 服务(最好是 SOAP)将 JSON 字符串值插入数据库中,
我应该如何执行此操作?还有其他更好的方法吗?
这是我的 Android 代码。
谢谢
Let's say I store a list of names , for eg: "abc","bcd","gdf"... in an array of Strings. I have an Android app that displays each of those values along with a checkbox. I need to convert my String array into a JSON String so that I can store it in a remote database. Right now I am working on localhost with a database created using SQL Server. I need to insert the JSON string values in the database using a web service , preferably SOAP
How should I do this ? Is there any other better way to do so ?
Here is my Android code.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
就我而言,这效果很好,
尝试一下。谢谢。
In my case this works fine,
Try it. Thnx.
好吧,我只是想向您展示如何将字符串数组写入 JSONObject 和 JSONArray。
Well, I just tried to show you how to write the String array to JSONObject and JSONArray.