织梦CMS - 轻松建站从此开始!

我的网站

汇编语言 软件工程 C/C++语言编程 机器人编程 算法 C#编程 vb .net教程 Java教程 VBnet 移动开发 c#教程
当前位置: 主页 > 编程开发 >
  • C#教程之如何随机选取一个机器的ip 日期:2017-06-28 20:42:20 点击:84 好评:0

    String ipArr[]={127.0.0.1,127.0.0.2}; int iRandom = new Random().nextInt(ipArr.length)%(ipArr.length); // 0、1的随机数 String ip =ipArr[iRandom]; System.out.println(ip); 此方法可用于当需要负载均衡时,即想选择多台机器...

  • C#教程之.NET实现:将EXE设置开机自动启动 日期:2017-06-28 20:41:42 点击:132 好评:0

    代码如下: private void btnSetOk_Click(object sender, EventArgs e) { RegCompStartRun(true, txtFullPath.Text.Trim()); } private void btnCancel_Click(object sender, EventArgs e) { RegCompStartRun(false, txtFullPath.Text.Trim()); } private...

  • C#教程之使用SmtpClient发送邮件的方法 日期:2017-06-28 20:41:11 点击:150 好评:0

    程序是这样的: 复制代码 代码如下: static void Main(string[] args) { SmtpClient client = new SmtpClient(); client.Host = localhost; MailAddress from = new MailAddress(from@test.com); MailAddress to = new MailAddress(to@test.co...

  • C#教程之C# 实现简单打印的实例代码 日期:2017-06-28 20:40:50 点击:149 好评:0

    主窗体代码如下: 复制代码 代码如下: public partial class PrintFileForm : Form { public PrintFileForm() { InitializeComponent(); PrintFile prinFile = new PrintFile(); prinFile.Print(); } } 打印文件类如下: 复制代码 代码...

  • C#教程之.NET程序页面中,操作并输入cmd命令的小例 日期:2017-06-28 20:40:25 点击:89 好评:0

    WinFormsApp_OperateAndInputCMD: 新建Form1,拖入TextBox,并设为允许多行,Dock设为Fill,然后绑定KeyUp事件即可 执行代码如下: 复制代码 代码如下: private void txtCmdInput_KeyUp(object sender, KeyEventArgs e) { if...

  • C#教程之C#发送HttpPost请求来调用WebService的方法 日期:2017-06-28 20:40:05 点击:71 好评:0

    代码如下: void UpdateContactSign() { string ServerPage =https://localhost/WebService/MyService.asmx; try { //ServerPage += ?op=TangramAction; ServerPage += /MyAction;//MyAction是WebService中的方法 string strXml=a ObjID=\9\/a,;//第一...

  • C#教程之C#操作图片读取和存储SQLserver实现代码 日期:2017-06-28 20:39:44 点击:177 好评:0

    一、用C#将Image转换成byte[]并插入数据库: 1.1 将图片控件的Image转换成流: 复制代码 代码如下: private byte[] PicToArray() { Bitmap bm = new Bitmap(picBox.Image); MemoryStream ms = new MemoryStream(); bm.Save(m...

  • C#教程之C# 将字节流转换为图片的实例方法 日期:2017-06-28 20:39:19 点击:109 好评:0

    代码如下: usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Drawing; usingSystem.IO; namespaceMicrosoft.Form.Base { classImageToByte { /// summary /// 图片转换成字节流 /// /summary ///...

  • C#教程之c#汉诺塔的递归算法与解析 日期:2017-06-28 20:39:00 点击:148 好评:0

    从左到右 A B C 柱 大盘子在下, 小盘子在上, 借助B柱将所有盘子从A柱移动到C柱, 期间只有一个原则: 大盘子只能在小盘子的下面. 如果有3个盘子, 大中小号, 越小的越在上面, 从上面给盘子...

  • C#教程之C#生成注册码的实例代码 日期:2017-06-28 20:38:31 点击:105 好评:0

    代码如下: string t = DateTime.Now.Ticks.ToString(); t = DESKey.DESEncrypt(t, DESKey.DesKeyStr); string[] strid = new string[t.Length];// for (int i = 0; i t.Length; i++)//把字符赋给数组 { strid[i] = t.Substring(i, 1); } string s...

推荐内容