- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在将每行只有一个电子邮件地址的 master_email_list.txt 输入到字符串 fileContent 中
我的表单询问每个文件有多少封电子邮件,并且是 splitNumint splitNum = int.Parse(numToSplit.Text);
它还从 folderBroswerDialog1 请求目录 saveFolder。
我想获取字符串 fineContent 并将每个文件的 splitNum 电子邮件输出到 saveFolder
因此它会将文件内容拆分为每个文件 100 封电子邮件,并在 saveFolder 中自动生成文件名 001.txt 002.txt 等。最后一个文件将只剩下剩下的。
我正朝着 if 循环的方向发展,(也许是最好的方式?)这样做的最佳方式是什么?
这是我的新代码:
public partial class Form2 : Form
{
public string startfiledir { get; private set; }
public string[] fileContent { get; private set; }
public string saveFolder { get; private set; }
public string filePath { get; private set; }
public string writers { get; private set; }
OpenFileDialog openFileDialog = new OpenFileDialog();
private void Button1_Click(object sender, EventArgs e)
{
this.button1.Enabled = false;
Refresh();
openFileDialog.InitialDirectory = startfiledir;
openFileDialog.Filter = "txt files (*.txt)|*.txt";
openFileDialog.FilterIndex = 2;
openFileDialog.RestoreDirectory = true;
openFileDialog.ShowDialog();
//Get the path of specified file
filePath = openFileDialog.FileName;
string[] fileContent = File.ReadAllLines(filePath);
//show the button again
this.button1.Enabled = Enabled;
Refresh();
}
private void SplitDatabutton_Click(object sender, EventArgs e)
{
//float splitNum = Int32.Parse(numToSplit.Text);
float splitNum = 100000;
ConcurrentDictionary<string, StreamWriter> writers = new ConcurrentDictionary<string, StreamWriter>();
var Tasks = System.Threading.Tasks.Parallel.For(0, fileContent.Length, (i) =>
{
string MyFile = Path.Combine(saveFolder, ((int)(i / ((float)splitNum))).ToString("0000") + ".txt");
writers.GetOrAdd(MyFile, File.AppendText(MyFile)).WriteLine(fileContent[i]);
});
foreach (var writer in writers)
{
writer.Value.Close();
}
}
}
最佳答案
您的案例很适合并行处理。以下是如何使用 System.Tasks
完成这项工作的粗略概念:
ConcurrentDictionary<string, StreamWriter> writers = new ConcurrentDictionary<string, StreamWriter>();
string[] fileContent = File.ReadAllLines("MAIN_FILE_PATH");
var Tasks = System.Threading.Tasks.Parallel.For(0, fileContent.Length, (i) =>
{
string MyFile = ((int)(i / 100f)).ToString("0000") + ".txt";
writers.GetOrAdd(MyFile, File.AppendText(MyFile)).WriteLine(fileContent[i]);
});
foreach (var writer in writers)
writer.Value.Close();
在评论中回答您的问题,更改此代码中的以下内容:
看起来您已使用 File.ReadAllText()
读取您的主文件。由于您的主文件每行有一封电子邮件,我建议您改为使用 ReadAllLines()
,这样您以后就不必拆分 fileContent
。因此,将 ReadAllText()
行替换为以下行:
string[] fileContent = File.ReadAllLines("MAIN_FILE_PATH");
上面的行还会为您提供主文件中电子邮件数量的正确计数。
在下一行中使用 saveFolder
和 numToSplit
构建输出路径:
string MyFile = Path.Combine(saveFolder, ((int)(i / ((float)numToSplit))).ToString("0000") + ".txt");
这将正确命名最多 10000 个文件的 block 文件。如果您需要更多,可以增加 ToString("0000")
部分中的零个数。
以下是您需要进行的更改:
using System.Collections.Concurrent;
using System.IO;
public partial class Form2 : Form
{
public string startfiledir { get; private set; }
public string[] fileContent { get; private set; }
public string saveFolder { get; private set; }
public string filePath { get; private set; }
private ConcurrentDictionary<string, StreamWriter> writers = new ConcurrentDictionary<string, StreamWriter>();
OpenFileDialog openFileDialog = new OpenFileDialog();
private void Button1_Click(object sender, EventArgs e)
{
this.button1.Enabled = false;
Refresh();
openFileDialog.InitialDirectory = startfiledir;
openFileDialog.Filter = "txt files (*.txt)|*.txt";
openFileDialog.FilterIndex = 2;
openFileDialog.RestoreDirectory = true;
openFileDialog.ShowDialog();
//Get the path of specified file
filePath = openFileDialog.FileName;
fileContent = File.ReadAllLines(filePath);
//show the button again
this.button1.Enabled = Enabled;
Refresh();
}
private void SplitDatabutton_Click(object sender, EventArgs e)
{
int splitNum = 100;
int chunks = (int)(fileContent.Length / (float)splitNum);
var Tasks = Parallel.For(0, chunks, (i) =>
{
string MyFile = Path.Combine(savePath, i.ToString("0000") + ".txt");
using (var W = File.AppendText(MyFile))
{
for (int j = i * splitNum; j < (i + 1) * splitNum; j++)
W.WriteLine(fileContent[j]);
}
});
}
}
关于c# - 如何将字符串输出到多个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58056505/
如何使用 SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchO
我刚刚开始使用 C++ 并且对 C# 有一些经验,所以我有一些一般的编程经验。然而,似乎我马上就被击落了。我试过在谷歌上寻找,以免浪费任何人的时间,但没有结果。 int main(int argc,
这个问题已经有答案了: In Java 8 how do I transform a Map to another Map using a lambda? (8 个回答) Convert a Map>
我正在使用 node + typescript 和集成的 swagger 进行 API 调用。我 Swagger 提出以下要求 http://localhost:3033/employees/sear
我是 C++ 容器模板的新手。我收集了一些记录。每条记录都有一个唯一的名称,以及一个字段/值对列表。将按名称访问记录。字段/值对的顺序很重要。因此我设计如下: typedef string
我需要这两种方法,但j2me没有,我找到了一个replaceall();但这是 replaceall(string,string,string); 第二个方法是SringBuffer但在j2me中它没
If string is an alias of String in the .net framework为什么会发生这种情况,我应该如何解释它: type JustAString = string
我有两个列表(或字符串):一个大,另一个小。 我想检查较大的(A)是否包含小的(B)。 我的期望如下: 案例 1. B 是 A 的子集 A = [1,2,3] B = [1,2] contains(A
我有一个似乎无法解决的小问题。 这里...我有一个像这样创建的输入... var input = $(''); 如果我这样做......一切都很好 $(this).append(input); 如果我
我有以下代码片段 string[] lines = objects.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.No
这可能真的很简单,但我已经坚持了一段时间了。 我正在尝试输出一个字符串,然后输出一个带有两位小数的 double ,后跟另一个字符串,这是我的代码。 System.out.printf("成本:%.2
以下是 Cloud Firestore 列表查询中的示例之一 citiesRef.where("state", ">=", "CA").where("state", "= 字符串,我们在Stack O
我正在尝试检查一个字符串是否包含在另一个字符串中。后面的代码非常简单。我怎样才能在 jquery 中做到这一点? function deleteRow(locName, locID) { if
这个问题在这里已经有了答案: How to implement big int in C++ (14 个答案) 关闭 9 年前。 我有 2 个字符串,都只包含数字。这些数字大于 uint64_t 的
我有一个带有自定义转换器的 Dozer 映射: com.xyz.Customer com.xyz.CustomerDAO customerName
这个问题在这里已经有了答案: How do I compare strings in Java? (23 个回答) 关闭 6 年前。 我想了解字符串池的工作原理以及一个字符串等于另一个字符串的规则是
我已阅读 this问题和其他一些问题。但它们与我的问题有些无关 对于 UILabel 如果你不指定 ? 或 ! 你会得到这样的错误: @IBOutlet property has non-option
这两种方法中哪一种在理论上更快,为什么? (指向字符串的指针必须是常量。) destination[count] 和 *destination++ 之间的确切区别是什么? destination[co
This question already has answers here: Closed 11 years ago. Possible Duplicates: Is String.Format a
我有一个Stream一个文件的,现在我想将相同的单词组合成 Map这很重要,这个词在 Stream 中出现的频率. 我知道我必须使用 collect(Collectors.groupingBy(..)
我是一名优秀的程序员,十分优秀!