我有一个包含X行数的txt文件。
我想阅读所有的行,然后打开一个网址:http://www.mywebsite.com/? +我的行的价值。
我怎样才能做到这一点?
Chrome会打开一个新标签,其中包含我的网址+文字行的值。我正在使用System.Diagnostic.
我有一个问题,因为chrome打开X标签...我想为我的txt文件中的每一行打开一个标签... 代码:
int counter = 0;
string line;
System.IO.StreamReader file =
new System.IO.StreamReader(Environment.GetFolderPath(Environment.SpecialFolder.Personal) + @"\logs.txt");
while ((line = file.ReadLine()) != null)
{
Process.Start(@"C:\Program Files\Google\Chrome\Application\chrome.exe", "http://www.example.com/?" + line);
}
file.Close();