Framework版本:.Net Framework 4 使用DataContractJsonSerializer时,实体请使用注解,格式如下 1.实体使用注解,并且提供get和set的public访问器 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Runtime.Serialization; namespace ReligionServer.v…
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Drawing; using System.IO; using ReligionServer.constant; namespace ReligionServer.util { /// <summary> /// 图片操作的工具类 /// </summary> public class I…
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.IO; namespace ReligionServer.util { public class FileUtil { /// <summary> /// 根据给定路径删除文件; 如果给定路径下只有一个文件, 且要删除这个文件, 那么就将目录一起删除 /// </summary> ///…
using System; using System.Collections.Generic; using System.Collections; using System.Text; using System.Data; using System.Reflection; using System.Data.Common; namespace ZGZY.Common { /// <summary> /// JSON帮助类 /// </summary> public class Js…
JSON 是现在比较流行的数据交互格式,NET3.0+有自带类处理JSON,2.0的话需要借助Newtonsoft.Json来完成,不然自己写的话,很麻烦. 网上搜索下载 Newtonsoft.Json.Net20.dll (没有加群找群主拿),添加引用到项目当中. /*添加引用*/ using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Newtonsoft.Json.Converters; /* 序列化,返回JSON格式的字符串 */…
<?php class mysql{ /** * 报错函数 * * @param string $error */ function err($error){ die("对不起,您的操作有误,错误原因为:".$error);//die有两种作用 输出 和 终止 相当于 echo 和 exit 的组合 } /** * 连接数据库 * * @param string $dbhost 主机名 * @param string $dbuser 用户名 * @param string $db…
using System; using System.Data; using System.Text; using System.Collections.Generic; using System.Reflection; using System.Data.Common; using System.Collections; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; using System.IO; usi…
1.增.删.改通用方法 /// <summary> /// 增.删.改通用方法 /// </summary> /// <param name="commandText">Command对象的CommandText属性(sql语句或存储过程名称)</param> /// <param name="commandParameters">Command对象的Parameters属性(sql语句或存储过程参数)&l…
1.增.删.改通用方法 /// <summary> /// 增.删.改通用方法 /// </summary> /// <param name="commandText">SqlCommand对象的CommandText属性(sql语句或存储过程名称)</param> /// <param name="commandParameters">SqlCommand对象的Parameters属性(sql语句或存储过…
import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.JavaType; import com.fasterxml.jackson.databind.ObjectMapper; import java.util.List; import java.util.Map; /** * @author hhh * @date 2019/7/28 15:52 * @D…