博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
随机函数
阅读量:6204 次
发布时间:2019-06-21

本文共 1085 字,大约阅读时间需要 3 分钟。

下面这段代码是自己写的一段程序段,主要功能是在一个确定的路径下面随机搜索n个项目.
None.gif
protected
 
void
 Button1_Click(
object
 sender, EventArgs e)
ExpandedBlockStart.gifContractedBlock.gif    
dot.gif
{
InBlock.gif        
try
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            Label3.Visible 
= true;
InBlock.gif            Label3.Text 
= "";
InBlock.gif            TableRow tr;
InBlock.gif            TableCell tc;
InBlock.gif            Random autoRand 
= new Random();
InBlock.gif            ArrayList arr 
= new ArrayList();
InBlock.gif            
double percentage = Convert.ToInt32(TextBox3.Text);
InBlock.gif            percentage 
= percentage / 100;
InBlock.gif
InBlock.gif            
string name = TextBox1.Text;
InBlock.gif            
string str = "D:\\XXX\\" + name + "\\";
InBlock.gif            
int num = 0;
InBlock.gif
InBlock.gif            DirectoryInfo dir 
= new DirectoryInfo(str);
InBlock.gif
InBlock.gif            
foreach (FileSystemInfo fsi in dir.GetFileSystemInfos())
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                filename 
= "";
InBlock.gif                
if (fsi is FileInfo)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    num
++;
InBlock.gif                    filename 
= fsi.FullName;
InBlock.gif                    arr.Add(filename);
ExpandedSubBlockEnd.gif                }
InBlock.gif                
if (fsi is DirectoryInfo)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    num
++;
InBlock.gif                    filename 
= fsi.FullName;
InBlock.gif                    arr.Add(filename);
ExpandedSubBlockEnd.gif                }
ExpandedSubBlockEnd.gif            }
InBlock.gif
InBlock.gif            
for (double i = 1; i <=percentage * num; i += 1)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
int sum =Convert.ToInt32(percentage * num);
InBlock.gif                
foreach (FileSystemInfo fsi in dir.GetFileSystemInfos())
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    filename 
= arr[autoRand.Next(1, num)].ToString();
InBlock.gif                    tr 
= new TableRow();
InBlock.gif                    tc 
= new TableCell();
InBlock.gif                    tc.Controls.Add(
new LiteralControl(filename.ToString()));
InBlock.gif                    tr.Cells.Add(tc);
InBlock.gif
InBlock.gif                    Table1.Rows.Add(tr);
InBlock.gif                    
break;
ExpandedSubBlockEnd.gif                }
ExpandedSubBlockEnd.gif            }
ExpandedSubBlockEnd.gif        }
InBlock.gif        
catch
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            Label3.Text 
= "不存在该项目,请确定后重新搜索!";
ExpandedSubBlockEnd.gif        }
ExpandedBlockEnd.gif    }

转载地址:http://scqca.baihongyu.com/

你可能感兴趣的文章
C++智能指针--weak_ptr
查看>>
HDURevenge of Segment Tree(第二长的递增子序列)
查看>>
Json数组操作小记 及 JSON对象和字符串之间的相互转换
查看>>
常量,字段,构造方法 调试 ms 源代码 一个C#二维码图片识别的Demo 近期ASP.NET问题汇总及对应的解决办法 c# chart控件柱状图,改变柱子宽度 使用C#创建Windows服...
查看>>
安装 directx sdk 出现 S1023 解决
查看>>
Git-命令行-删除本地和远程分支
查看>>
SUPERSOCKET.CLIENTENGINE 简单使用
查看>>
第 7 章 异步输入输出
查看>>
ASP.NET应用使用Nginx做负载均衡遇到的一个问题
查看>>
Chapter 5 Blood Type——5
查看>>
在JSON中遇到的一些坑
查看>>
本文将介绍“数据计算”环节中常用的三种分布式计算组件——Hadoop、Storm以及Spark。...
查看>>
C#面试题(转载) SQL Server 数据库基础笔记分享(下) SQL Server 数据库基础笔记分享(上) Asp.Net MVC4中的全局过滤器 C#语法——泛型的多种应用...
查看>>
springmvc中controller内方法跳转forward?redirect?
查看>>
论坛程序推荐,区别
查看>>
spring mvc redirect 重定向 跳转并传递参数
查看>>
《止学》 [隋]文中子(王通)
查看>>
微信小程序之底部弹框预约插件
查看>>
基础知识 - Golang 中的正则表达式
查看>>
分享一个shell脚本的坑:grep匹配+wc取值 在脚本执行后的结果与手动执行结果不一致...
查看>>