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

你可能感兴趣的文章
3.5. Ticket
查看>>
越狱第一至五季/全集迅雷下载
查看>>
从Mysql slave system lock延迟说开去
查看>>
归并排序
查看>>
RecyclerView的下拉刷新和加载更多 动画
查看>>
ABAP常见面试问题
查看>>
程序猿是如何解决SQLServer占CPU100%的
查看>>
web.xml
查看>>
HBase-1.2.4LruBlockCache实现分析(一)
查看>>
SDN交换机在云计算网络中的应用场景
查看>>
革新以太网交换机架构 全光网络的风刮进园区
查看>>
揭开勒索软件的真面目
查看>>
物联网商机迸发 LPWAN芯片现身 本文转自d1net(转载)
查看>>
mint mvc文件上传功能——使用篇
查看>>
【eclipse转idea的第一天】配置idea
查看>>
Oracle 彻底 kill session
查看>>
天龙八部***核心代码
查看>>
CentOS6.5 搭建Open***服务器
查看>>
在没有域环境的情况下配置完整安装的SharePoint2010和2013
查看>>
java温故笔记(二)java的数组HashMap、ConcurrentHashMap、ArrayList、LinkedList
查看>>