资源简介
计算机网络的课程设计-FTP客户端-基于C#实现-所有源代码和项目文件
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.Net.Sockets;
using System.xml;
using System.IO;
using System.Text.Regularexpressions;
namespace FTP客户端
{
public partial class Form1 : Form
{
xmlDocument xml;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender EventArgs e)
{
xml = new xmlDocument();
try
{
xml.Load(“server.xml“);
}
catch//(FileNotFoundException ex)
{
FileStream fs = File.Create(“server.xml“);
string str=“l version=\“1.0\“?>\r\n\r\n “;
fs.Write(ASCIIEncoding.UTF8.GetBytes(str) 0 str.Length);
fs.Close();
xml.Load(“server.xml“);
}
xmlNodeList list = xml.GetElementsByTagName(“name“);
if(list.Count>0)
foreach (xmlNode node in list)
comboBox_server.Items.Add(node.InnerText);
}
private void button_login_Click(object sender EventArgs e)
{
if(!comboBox_server.Text.StartsWith(“ftp://“)) comboBox_server.Text=“ftp://“+comboBox_server.Text;
if (xml.SelectSingleNode(@“/root/server[name=‘“ + comboBox_server.Text + “‘]“) == null)
{
xmlNode rootnode = xml.SelectSingleNode(“//root“);
xmlElement server = xml.CreateElement(“server“);
xmlElement name = xml.CreateElement(“name“);
name.InnerText = comboBox_server.Text;
xmlElement user = xml.CreateElement(“user“);
user.InnerText = textBox_user.Text;
xmlElement pswd = xml.CreateElement(“password“);
pswd.InnerText = textBox_password.Text;
server.AppendChild(name);
server.AppendChild(user);
server.AppendChild(pswd);
rootnode.AppendChild(server);
xml.Save(“server.xml“);
if (!comboBox_server.Items.Contains(comboBox_server.Text))
comboBox_server.Items.Add(comboBox_server.Text);
}
else
{
}
listView_status.Items.Clear();
listView_status.Items.Add(“连接状态:“);
listView_server.Items.Clear();
groupBox2.Enabled = true;
get_dirs(comboBox_server.Text);
}
private void comboBox_server_SelectedIndexChanged(object sender EventArgs e)
{
try
{
textBox_user.Text = xml.SelectSingleNode(“//root/server[name=‘“ + comboBox_server.Text + “‘]/user“).InnerText;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 24064 2011-06-27 12:06 计算机网络课程设计-FTP客户端\FTP客户端.exe
文件 289 2011-09-29 15:19 计算机网络课程设计-FTP客户端\server.xm
文件 34241 2011-06-27 21:17 计算机网络课程设计-FTP客户端\流程图.jpg
文件 48640 2011-06-27 21:20 计算机网络课程设计-FTP客户端\流程图.vsd
文件 25088 2011-06-27 11:57 计算机网络课程设计-FTP客户端\源代码\FTP客户端\bin\Debug\FTP客户端.exe
文件 44544 2011-06-27 11:57 计算机网络课程设计-FTP客户端\源代码\FTP客户端\bin\Debug\FTP客户端.pdb
文件 14328 2011-06-27 09:11 计算机网络课程设计-FTP客户端\源代码\FTP客户端\bin\Debug\FTP客户端.vshost.exe
文件 490 2009-06-11 05:14 计算机网络课程设计-FTP客户端\源代码\FTP客户端\bin\Debug\FTP客户端.vshost.exe.manifest
文件 518 2011-06-27 11:26 计算机网络课程设计-FTP客户端\源代码\FTP客户端\bin\Debug\server.xm
文件 383 2011-06-23 08:52 计算机网络课程设计-FTP客户端\源代码\FTP客户端\bin\Debug\server.xm
文件 24064 2011-06-27 12:06 计算机网络课程设计-FTP客户端\源代码\FTP客户端\bin\Release\FTP客户端.exe
文件 42496 2011-06-27 12:06 计算机网络课程设计-FTP客户端\源代码\FTP客户端\bin\Release\FTP客户端.pdb
文件 14328 2011-07-20 21:30 计算机网络课程设计-FTP客户端\源代码\FTP客户端\bin\Release\FTP客户端.vshost.exe
文件 490 2009-06-11 05:14 计算机网络课程设计-FTP客户端\源代码\FTP客户端\bin\Release\FTP客户端.vshost.exe.manifest
文件 275 2011-06-27 14:25 计算机网络课程设计-FTP客户端\源代码\FTP客户端\bin\Release\server.xm
文件 16320 2011-07-20 21:41 计算机网络课程设计-FTP客户端\源代码\FTP客户端\Form1.cs
文件 24330 2011-06-27 12:06 计算机网络课程设计-FTP客户端\源代码\FTP客户端\Form1.Designer.cs
文件 6628 2011-06-27 12:06 计算机网络课程设计-FTP客户端\源代码\FTP客户端\Form1.resx
文件 706 2011-06-27 11:34 计算机网络课程设计-FTP客户端\源代码\FTP客户端\Form_rename.cs
文件 2644 2011-06-27 11:16 计算机网络课程设计-FTP客户端\源代码\FTP客户端\Form_rename.Designer.cs
文件 5814 2011-06-27 11:16 计算机网络课程设计-FTP客户端\源代码\FTP客户端\Form_rename.resx
文件 3760 2011-06-27 11:16 计算机网络课程设计-FTP客户端\源代码\FTP客户端\FTP客户端.csproj
文件 1685 2011-06-27 11:46 计算机网络课程设计-FTP客户端\源代码\FTP客户端\obj\Debug\FTP客户端.csproj.FileListAbsolute.txt
文件 911 2011-06-27 11:57 计算机网络课程设计-FTP客户端\源代码\FTP客户端\obj\Debug\FTP客户端.csproj.GenerateResource.Cache
文件 25088 2011-06-27 11:57 计算机网络课程设计-FTP客户端\源代码\FTP客户端\obj\Debug\FTP客户端.exe
文件 180 2011-06-27 11:57 计算机网络课程设计-FTP客户端\源代码\FTP客户端\obj\Debug\FTP客户端.Form1.resources
文件 180 2011-06-27 11:16 计算机网络课程设计-FTP客户端\源代码\FTP客户端\obj\Debug\FTP客户端.Form_rename.resources
文件 44544 2011-06-27 11:57 计算机网络课程设计-FTP客户端\源代码\FTP客户端\obj\Debug\FTP客户端.pdb
文件 180 2011-06-27 11:16 计算机网络课程设计-FTP客户端\源代码\FTP客户端\obj\Debug\FTP客户端.Properties.Resources.resources
文件 1364 2011-07-20 21:30 计算机网络课程设计-FTP客户端\源代码\FTP客户端\obj\Release\FTP客户端.csproj.FileListAbsolute.txt
............此处省略31个文件信息
- 上一篇:图书管理系统,关于数据库的图书管理,c#制作
- 下一篇:C#迷宫小游戏
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论