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

你可能感兴趣的文章
[LeetCode] Binary Tree Paths 二叉树路径
查看>>
SAP Client Copy
查看>>
安卓自动生成代码插件-Android code Generator(转)
查看>>
构建一个高可扩展性javabean和jsp连接数据库操作
查看>>
JS魔法堂:Data URI Scheme介绍
查看>>
《c++primer》疑惑记录
查看>>
java的(PO,VO,TO,BO,DAO,POJO)解释
查看>>
SWT:获取字符串实际宽度
查看>>
Device Mapper Multipath(DM-Multipath)
查看>>
Web安全实践(10)攻击weblogic
查看>>
Xcode5.0使用iOS6.1SDK及模拟器
查看>>
如何编写解决方案?
查看>>
引起超时的原因及表解锁的方法<转>
查看>>
微信公众帐号开发教程第2篇-微信公众帐号的类型(普通和会议)(转)
查看>>
Oracle二三事之 EBS升级
查看>>
PC端体验效果最佳epub阅读器——iRead爱读书
查看>>
DataGridView打印类
查看>>
【java】实体类中 Set<对象> 按照对象的某个字段对set排序
查看>>
java基础之:匿名内部类应用例子一
查看>>
如何保证黑盒测试的覆盖率(转)
查看>>