- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个很大的日志文件,其中包含每隔一秒的时间戳。我需要从这个巨大的文件中剪切一个用户定义的部分并将其保存在另一个文本文件中。我很困惑,因为 fstream 类可以处理最大2GB 的文件大小和读取所有行是时间和内存灾难。
时间戳模式:!<< dd.mm.yyyy hh:min:sec> 每秒,每行一个。一位教授这家伙建议使用 LINQ 和 readline()。
文件示例:
!<<14.12.2012 16:20:03>
some text some text some
some text some text some
some text some text some
!<<14.12.2012 16:20:04>
some text some text some
some text some text some
some text some text some
some text some text some
some text some text some
!<<14.12.2012 16:20:05>
some text some text some
!<<14.12.2012 16:20:06>
some text some text some
some text some text some
以此类推,直到 EOF。
最佳答案
ReadLine 根本不是您想做的...打开文件阅读器...寻找您想要的位置,读出您想要的数据(到另一个文件流中)。
“ReadLine”必须实际读取数据...而查找 (myStream.Position = whereIWantToGo) 基本上是即时的。
您可以像处理已排序的数据库一样处理它。一个拥有 1,000,000 条记录的 DB 只需要 20 次“查找”操作就可以找到... 半路开始,太高了?刚刚保存了 500,000 次搜索...中途返回...太高了?刚刚减少了 250,000 次搜索...冲洗,重复。
根据你的电子邮件(顺便说一句 - 你真的应该继续使用 S.O.,而不是电子邮件 - 这样其他人也可以受益)......答案是你需要尝试不同的编码类型。您的文件可能不是 UTF8 编码(这是我下面的代码所期望的)。因此,请使用 new StreamReader("MyLogFile.txt", Encoding.ASCII)
或其他一些编码,直到它适合您为止。
免责声明...此代码令人讨厌,并且可能在存在无限循环的地方存在错误 :)...但是,这里有一个适合您的控制台应用程序。
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
// example dates
var lookFor = new DateTime(2012, 12, 14, 16, 20, 02);
var readUntilDate = new DateTime(2012, 12, 14, 16, 20, 05);
using (var stream = File.OpenText("MyLogFile.txt"))
{
if (SeekToEntry(stream, lookFor) == false)
{
Console.WriteLine("Could not find entry for date {0}", lookFor);
return;
}
foreach (var line in ReadEntriesUntil(stream, readUntilDate))
{
Console.WriteLine("Line: {0}", line);
}
}
}
// This method simply spits out one line at a time until it hits
// the target cut-off.
static IEnumerable<string> ReadEntriesUntil(StreamReader stream, DateTime target)
{
while (true)
{
string line = stream.ReadLine();
if (line == null)
{
break;
}
if (line.StartsWith("!<<"))
{
DateTime entryDate;
if (DateTime.TryParseExact(line.Substring(3, 19).Replace(".", ""), @"ddMMyyyy HH:mm:ss",
CultureInfo.InvariantCulture, DateTimeStyles.None, out entryDate))
{
if (entryDate >= target)
{
break;
}
}
}
yield return line;
}
}
// This method will bounce around the stream till it finds your
// target entry date.
static bool SeekToEntry(StreamReader stream, DateTime target)
{
long from = 0;
long to = stream.BaseStream.Length;
while (true)
{
long testIndex = (to - from) / 2;
stream.BaseStream.Seek(testIndex, SeekOrigin.Begin);
var entryDate = GetNextEntryDate(stream, out testIndex);
if (entryDate == null || (from == to))
{
return false;
}
switch (entryDate.Value.CompareTo(target))
{
case -1:
// Found too low...
from = testIndex;
break;
case 1:
// Fount too high...
to = testIndex;
break;
default: return true;
}
}
}
// This is a function that is meant to keep seeking forward until
// it hits an entry date.
static DateTime? GetNextEntryDate(StreamReader stream, out long actualIndex)
{
actualIndex = stream.BaseStream.Position;
DateTime? result = null;
string line = null;
// Find the next entry.
while ((line = stream.ReadLine()) != null && line.StartsWith("!<<") == false) ;
if (line != null)
{
actualIndex = stream.BaseStream.Position - line.Length;
DateTime timeStamp;
if (DateTime.TryParseExact(line.Substring(3, 19).Replace(".", ""), @"ddMMyyyy HH:mm:ss",
CultureInfo.InvariantCulture, DateTimeStyles.None, out timeStamp))
{
result = timeStamp;
}
}
return result;
}
}
}
关于c# - 保存一个巨大文本文件的特定部分(超过 2GB),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8507297/
我使用这个 cmd 应用程序 https://github.com/tokland/youtube-upload 上传 50 个视频后,我收到此错误: [RequestError] Server re
尝试将 docker 容器提交到镜像时出现错误: [root@dockerregistry /]# docker commit da4180ab1536 dockerregistry:5000/myi
我只是想知道这样做会更好吗: if((fd = open(filename, O_RDWR)) == -1) { fprintf(stderr, "open [ %s ]\n", strerror(e
我在我的开发机器(单个笔记本)中使用 Elasticsearch 1.4.4。一切都设置为默认值,因为我从未更改过任何设置。 当我启动它时,我通常会收到以下消息: [2015-10-27 09:38:
我收到错误 Lock wait timeout exceeded;尝试重新启动事务。这是什么原因,如何解决?仅供引用:MySQL 配置文件中的 innodb_lock_wait_timeout = 1
我对 Slack 中的 block 功能有疑问。有人设法构建 3 列而不是 2 列吗? 我凭直觉尝试了以下代码,但它不起作用: { "blocks": [ {
div 中的内容超过由 css 决定的固定大小。 #fixeddiv { position: fixed; margin: auto; max-height: 300px
我想将 EditText 字段限制为 150 个字符,我可以很容易地做到这一点。但是,当用户试图超过该限制时,我还需要通过键入(即第 151 个字符)或粘贴超过 150 个字符来提醒用户。 解决这个问
我目前正在使用此代码并排记录两个窗口: ffmpeg -f gdigrab -framerate 30 -i title="" -f gdigrab -framerate 30 -i title=""
我在几个包含长字符串的单元格上使用嵌套的 SUBSTITUE 函数,并定期更新 SUBSTITUE fx,这导致我将其复制并粘贴到所有需要它的单元格中。问题是,我的 SUBSTITUTE 列表会随着时
我创建了一个标题 div,如下所示:
Here is the demo link 您怎么看,页面中只有 8 个广告可见,但我有 14 个广告。我已阅读有关广告限制的信息 here但不明白是不是我的情况?有人可以给我确切的答案,为什么我看不
我的非常简单的算法 - C 中的快速排序有问题。它非常有效(随机化大约 0.1 秒并检查列表是否已排序)但是当我想要对超过 500k 的元素进行排序时它会崩溃。不幸的是,我需要对它们进行更多排序,因为
我成功解决了一个关于 Hackerrank 的问题,它通过了所有测试用例,但我得到了一个错误,超过了时间限制。我猜如果我优化我的代码它会工作,但我想不出任何方法来使我的代码更有效率。 问题是: 对大小
你会如何用 包围下面的文字3 个反引号 ```使用 tpope 的 Vim Surround . 我所能做的就是 1 个反引号 使用 S`在视觉模式下: 最佳答案 这不是你问的,但这可以在没有环绕的情
我目前有一个模拟账户。我正在尝试为我的雇主使用 SwifType 制作 POC。我们有一个非常大的数据库,每 1 小时索引一次,并创建一个 JSON 文件。我认为与 Elastic 的集成将非常容易,
我为一个大约有 100 到 120 名成员的小型组织维护网站。 每个月,我们都会发送一封电子邮件,通知我们的成员我们将在即将举行的 session 中讨论的主题。 我正在尝试使用我们的网站为我们提供一
这个问题已经有答案了: How to automatically input an array formula as string with more than 255 characters in l
我有一个在 JBoss 6.1 中运行的 JSF 应用程序,它使用内部Tomcat Servlet 容器。 我已经通过apache commons文件上传实现了上传。我想防止上传过大的文件并设置了属性
当我尝试在 PyMySQL 上执行查询时,出现以下错误: pymysql.err.InternalError: (1205, 'Lock wait timeout exceeded; try rest
我是一名优秀的程序员,十分优秀!