2

我正在尝试在 c# (winforms) 中做一些事情,但我遇到了一个小问题。我已经尝试了与此问题相关的所有代码,但没有成功。请在回答之前阅读问题。

我有 2 个功能。我想制作 1 个函数,它将从特定的 .txt 文件中获取随机行并将其放入另一个中。

这是一个例子:

//This is a ContexMenuStrip, a right click menu item that need to load Function1 (check the picture below

private void pdkName_Click(object sender, EventArgs e)
{
    Function1();
}

private void Function1()
{
      //CODE to Count and Display random line from .txt file
}

到目前为止,我已经尝试了许多以前在 stackoverflow.com 上发布的代码,并且我还尝试了很多与它们的组合。我将在此处粘贴其中一些:


Random rand = new Random();
IEnumerable<string> lines = File.ReadLines(@"D:\FirstName.txt");
var lineToRead = rand.Next(1, lines.Count());
var line = lines.Skip(lineToRead - 1).First();

int counter = 0;
string line;

// Read the file and display it line by line.
System.IO.StreamReader file =
    new System.IO.StreamReader(@"D:\FirstNames.txt");
while ((line = file.ReadLine()) != null)
{
    System.Console.WriteLine(line);
    counter++;
}
file.Close();
System.Console.WriteLine("There were {0} lines.", counter);
// Suspend the screen.
System.Console.ReadLine();

// 这有效,但仅适用于第一行,不能与它进行任何组合(从其他函数使其随机)

using (StreamReader reader = File.OpenText(@"D:\FirstName.txt")
{
   textBox1.Text = reader.ReadLine();
}

var lines = File.ReadAllLines(@"D:\FirstNames.txt");
var r = new Random();
var randomLineNumber = r.Next(0, lines.Length - 1);
var line = lines[randomLineNumber];

string[] lines = File.ReadAllLines(@"D:\FirstNames.txt"); 
Random rand = new Random();
return lines[rand.Next(lines.Length)];

该函数需要对文件进行计数,随机选择一行并返回它。调用该函数的 ContexMenuStrip 中的项目菜单用于 TEXTBOX。

所以一般来说,我需要一个来自 .txt 文件的随机名称显示在一个文本框中,单击右键单击文本框并选择加载我的函数的项目。这是一张带有简单解释的小图。

在此处输入图像描述

4

2 回答 2

3

就像fabian说的或者在方括号里面声明random,直接调用next方法

string[] lines = File.ReadAllLines(@"C:\...\....\YourFile.txt");

textBox1.Text = lines[new Random().Next(lines.Length)];
于 2013-06-23T00:51:01.543 回答
1

将您的随机数定义为表单中的私人成员:

private _rand = new Random();

然后在来自 ContextMenuStrip 的事件中,粘贴此代码(确保编辑文件名“yourFile.txt”):

var lines = File.ReadAllLines(@"D:\FirstNames.txt");
var randomLineNumber = _rand.Next(0, lines.Length - 1);
var line = lines[randomLineNumber]; //getting the random line
using (StreamWriter sw= File.AppendText("yourFile.txt")) 
{
     sw.WriteLine(line); //append the random line in your file
}
于 2013-06-23T00:44:12.573 回答