上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 43 下一页

2017年3月11日

NET(C#):XmlArrayItem特性和XmlElement特性在序列化数组的差别

摘要: https://www.mgenware.com/blog/?p=142 比如这样一个类,我们用XmlArrayItem特性标明数组内出现的元素类型: public class a{ [XmlArrayItem(Type = typeof(int)), XmlArrayItem(Type = typ 阅读全文

posted @ 2017-03-11 22:48 chengjunde 阅读(6475) 评论(1) 推荐(3) 编辑

2017年3月3日

在一个空ASP.NET Web项目上创建一个ASP.NET Web API 2.0应用

摘要: 在一个空ASP.NET Web项目上创建一个ASP.NET Web API 2.0应用 http://www.cnblogs.com/artech/p/web-api-sample.html ASP.NET MVC 4 中的JSON数据交互 http://www.cnblogs.com/luotao 阅读全文

posted @ 2017-03-03 13:53 chengjunde 阅读(225) 评论(0) 推荐(0) 编辑

2017年2月28日

Spark入门实战系列--8.Spark MLlib(上)--机器学习及SparkMLlib简介

摘要: http://www.tuicool.com/articles/n2MJ3mn 阅读全文

posted @ 2017-02-28 23:28 chengjunde 阅读(141) 评论(0) 推荐(0) 编辑

(转载)Linux如何编译安装源码包软件

摘要: http://www.cnblogs.com/pudao/p/5129513.html 阅读全文

posted @ 2017-02-28 23:25 chengjunde 阅读(147) 评论(0) 推荐(0) 编辑

2017年2月27日

SoapUI使用方法-01发送http请求

摘要: soap ui http://blog.csdn.net/russ44/article/details/51680083 一、发送HTTP请求消息 1、打开soapUI。 2、新建一个项目,实例如下: 点击ok后在soapUI界面左侧会显示出此项目,如图: 阅读全文

posted @ 2017-02-27 20:24 chengjunde 阅读(399) 评论(0) 推荐(0) 编辑

C#将字符转换成utf8编码 GB321编码转换

摘要: public static string get_uft8(string unicodeString) { UTF8Encoding utf8 = new UTF8Encoding(); Byte[] encodedBytes = utf8.GetBytes(unicodeString); String de... 阅读全文

posted @ 2017-02-27 18:04 chengjunde 阅读(20223) 评论(0) 推荐(2) 编辑

【整理】C#文件操作大全(SamWang)

摘要: 【整理】C#文件操作大全(SamWang) 文件与文件夹操作主要用到以下几个类: 1.File类: 提供用于创建、复制、删除、移动和打开文件的静态方法,并协助创建 FileStream 对象。 msdn:http://msdn.microsoft.com/zh-cn/library/system.i 阅读全文

posted @ 2017-02-27 18:03 chengjunde 阅读(276) 评论(0) 推荐(0) 编辑

数组转成字符串互换

摘要: string str = "1,2,3,4,5,6,7";string[] strArray = str.Split(','); //字符串转数组str = string.Empty;str = string.Join(",", strArray);//数组转成字符串 阅读全文

posted @ 2017-02-27 16:31 chengjunde 阅读(651) 评论(0) 推荐(0) 编辑

c#一个FTP操作封装类FTPHelper

摘要: 参考了网上一些代码,作了一些调整优化。 [csharp] view plain copy print? using System; using System.Collections.Generic; using System.Linq; using System.Text; using System 阅读全文

posted @ 2017-02-27 15:34 chengjunde 阅读(397) 评论(0) 推荐(0) 编辑

2017年1月20日

对集合排序的三种方式

摘要: http://www.cnblogs.com/darrenji/p/4397412.html 以上,OrderBy返回的类型是IEnumerable<Student>。 如果想使用List<T>的Sort方法,就需要让Student实现IComparable<Student>接口。 让Student 阅读全文

posted @ 2017-01-20 11:15 chengjunde 阅读(504) 评论(0) 推荐(0) 编辑

上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 43 下一页

导航