0
votes
1answer
51 views
C++ 64-bit std::ostream support
I am about to make the transition from using standard FILE pointers from some older code to using C++ streams but I need to have LARGEFILE seeking support (the compiler flags that …
3
votes
6answers
185 views
c# multi-line-regex search in whole file
I've found loads of examples on to to replace text in files using regex. However it all boils down to two versions:
1. Iterate over all lines in the file and apply regex to each si …
5
votes
6answers
1k views
Binary search in a sorted (memory-mapped ?) file in Java
I am struggling to port a Perl program to Java, and learning Java as I go. A central component of the original program is a Perl module that does string prefix lookups in a +500 GB …
3
votes
3answers
73 views
Viewing large XML files in eclipse?
I'm working on a project involving some large XML files (from 50MB to over 1GB) and it would be nice if I could view them in eclipse (simple text view is fine) without Java running …
0
votes
5answers
59 views
Extract text from particular elements of a large poorly formatted XML file
I have a large (~50Mb) file containing poorly formatted XML describing documents and properties between <item> </item> tags, and I want to extract the text from all Eng …
2
votes
2answers
210 views
.Net Transforming large XML docs with XSL
Question: What is the best way to transform a large XML document (>200MB) using XSL in .Net?
Background:
I have a application that feeds me large data files, I cannot change the …
1
vote
2answers
198 views
Large file handling - Read algorithm breaks - C#
So I've got an algorithm that reads from a (very large, ~155+ MB) binary file, parses it according to a spec and writes out the necessary info (to a CSV, flat text). It works flawl …
2
votes
4answers
140 views
Are large include files like iostream efficient? (C++)
Iostream, when all of the files it includes, the files that those include, and so on and so forth, adds up to about 3000 lines.
Consider the hello world program, which needs no mo …
0
votes
1answer
80 views
How to count differences between two files on linux?
Hi all,
I need to work with large files and must find differences between two. And I don't need the different bits, but the number of differences.
For the differ rows I come up …
4
votes
4answers
2k views
Managing large binary files with git
Hi there. I am looking for opinions of how to handle large binary files on which my source code (web application) is dependent. We are currently discussing several alternatives:
…
0
votes
0answers
64 views
How to edit a really large file in Windows [closed]
NOt a programming question I know but related to a program I am writing, and probably a problem only likely to be encountered by programmers.
I have a really text file which I nee …
0
votes
3answers
90 views
Is it possible to store only a checksum of a large file in git?
I'm a bioinformatician currently extracting normal-sized sequences from genomic files. Some genomic files are large enough that I don't want to put them into the main git repositor …
2
votes
2answers
71 views
Automate printing & dealing with large HTML files
I wrote a simple PHP application to create salary cheques for the company employees.
The interaction between db & app is nice, the data is cached & the performance is high …
6
votes
9answers
2k views
How best to use XPath with very large XML files in C#?
I need to do some processing on fairly large XML files ( large here being potentially upwards of a gigabyte ) in C# including performing some complex xpath queries. The problem I h …
7
votes
9answers
1k views
Fastest possible XML handling in Delphi for very large documents
I need recommendations on what to use in Delphi (I use Delphi 2009) to handle very large XML files (e.g. 100 MB) as fast as possible.
I need to input the XML, access and update t …
