博客
关于我
强烈建议你试试无所不能的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/

你可能感兴趣的文章
jqueryui和easyui区别
查看>>
css
查看>>
装饰设计模式
查看>>
Lambda入门
查看>>
《Linux内核原理与分析》第八周作业
查看>>
写一个iOS应用之前需要做的事情
查看>>
企业级工作流解决方案(二)--微服务总体介绍
查看>>
Bonbo Git Server
查看>>
闭门造车
查看>>
hdu 3118
查看>>
取消文件默认打开方式
查看>>
前端下载远程文件
查看>>
第八周作业
查看>>
linq与并发操作
查看>>
hiho一下第129周 后缀自动机二·重复旋律6
查看>>
Java 之集合
查看>>
JVM 调试工具
查看>>
Linux C 语言 获取系统时间信息
查看>>
pku 1182 食物链
查看>>
echarts使用笔记四:双Y轴
查看>>