up vote 256 down vote favorite
97
share [g+] share [fb]

I mean 100+ MB big; such text files can push the envelope of editors.

I need to look through a large XML file, but cannot if the editor is buggy.

Any suggestions?

link|improve this question
49  
Actually, text files of 100+ MB or even 1+ GB is not as uncommon as you may think (i.e. log files from busy servers). – Anders Sandvig Dec 19 '08 at 19:18
11  
If you'd like to generate a massive text file on linux or on a mac, you can go into terminal and type "cat /dev/urandom > huge.txt". A few seconds will get you 10MB (94,000 lines of crap). Not exactly relevant but somebody might want to know. – Sneakyness Aug 6 '09 at 0:36
10  
Sneakyness: And not exactly text. I think the requirements of reading text files and reading binary files differ somewhat. You might pass it through base64 or uuencode, though. – Joey Aug 16 '09 at 10:24
2  
@Anders: 1GB+ log files? Yikes! Have you never heard of logrotate? – Thanatos Jul 19 '10 at 2:11
3  
@Thanatos I have, but that doesn't mean everyone who writes software or configures servers have... – Anders Sandvig Jul 21 '10 at 10:54
show 6 more comments
feedback

closed as not constructive by Kev Jan 27 at 1:47

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

protected by Community Sep 9 '11 at 3:11

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

51 Answers

1 2
up vote 183 down vote accepted

I'm assuming that you're on Windows, so I'll recommend gVim. Where Notepad++ will choke on very large files, VIM has chowed through those puppies with little problem.

010Editor on Windows will open GIANT (think 5GB) files in binary mode and allow you to edit and search the text.

Community wiki:

Suggestions are

  • gVim loads entire file into memory first.
  • SlickEdit
  • Emacs (has a low maximum buffer size limit if compiled in 32-bit mode).
  • Large Text File Viewer
  • PilotEdit (loads entire file into memory first).
  • HxD hex editor, but good for large files.

Text editors with 2GB limit: Notepad++, Jujuedit, TextPad

link|improve this answer
18  
VIM, or Emacs... pick your poison, both will handle any file you throw at them. I personally prefer Emacs, but both will beat notepad without so much as a hiccup. – Mike Stone Oct 2 '08 at 8:46
11  
Emacs has a maximum buffer size, dependent on the underlying architecture (32 or 64 bits). I think that on 32 bit systems you get "maximum buffer size exceeded" error on files larger than 128 MB. – Rafał Dowgird May 8 '09 at 13:45
6  
+1 for Vim. It's my editor of choice. – Steve Rowe May 9 '09 at 4:16
4  
@Rafal Interesting! Looks like on 64bit it is ~1024 petabytes. The reason has to do with the fact that emacs has to track buffer positions (such as the point) – docgnome Jul 1 '09 at 23:31
21  
But be careful, vim will only work as long as the files in question have enough line breaks. I once had to edit a ca. 150 MB file without any line breaks, and had to resort to gedit because vim couldnt handle it. – Benno Jan 29 '10 at 16:47
show 18 more comments
feedback

Why are you using editors to just look at a (large) file?

Under *nix or cygwin, just use less ("less is more", only better, since you can back up). Searching and navigating under less is very similar to vim, but there is no swap file and little RAM used.

Update Jan 2012 (thanks for the tip, ChristophK): there is a native Win32 port of GNU "less". See the comment below.

Piggybacking off of some of the comments below, perl's ".." (range flip/flop) operator makes a nice selection mechanism to limit the crud you have to wade through, as well

E.g.:

$ perl -n -e 'print if ( 1000000 .. 2000000)' humongo.txt | less

(start at line 1 million and stop at line 2 million, sift the output manually in "less")

$ perl -n -e 'print if ( /interesting regex/ .. /boring regex/)' humongo.txt | less

(start when the "interesting regular expression" finds something, stop when the "boring regular expression" find the end of an interesting block -- may find multiple blocks, sift the output...)

Finally, 100 MB isn't too big. 3 GB is getting kinda big. I used to work at a print & mail facility that created about 2 % of U.S. first class mail. One of the systems for which I was the tech lead accounted for about 15+ % of the pieces of mail. We had some big files to debug here and there :-)

link|improve this answer
2  
+1, I recently had some really huge xml files (+1 gigabyte) that I needed to look at. I'm on windows and both vim, emacs, notepad++ and several other editors completely choked on the file to the point where my system almost became unusable when trying to open the file. After a while I realized how unnecessary it was to actually attempt to open the file in an -editor- when I just needed to -view- it. Using cygwin (and some clever grep/less/sed-magic) I easily found the part I was interested in and could read it without any hassle. – wasatz Apr 23 '10 at 11:56
1  
+1 for using the right tool for the job. ;-) – Lester Cheung Dec 6 '10 at 2:52
1  
you don't need cygwin for less, you can also use it under windows: gnuwin32.sourceforge.net/packages/less.htm – ChristophK Nov 2 '11 at 9:33
show 1 more comment
feedback

I've found that UltraEdit32 (non free) does pretty well loading large text files (including XML).

link|improve this answer
5  
i just opened a 150mb SQL dump in UEStudio, and after a short loading pause, it worked fine. Scrolling was a bit jerky, but not bad for a file with 2.4 million lines. – nickf Dec 17 '08 at 7:46
1  
I regularly use UltraEdit for very large files, binary and text, and it always works well. – bramp Apr 23 '10 at 11:40
show 1 more comment
feedback

I've been using EmEditor (non free) and it handles huge text files with no problem. (hundreds of MB and up)

link|improve this answer
4  
EmEditor is the most efficient editor for large files that I've seen. It was specifically designed for this. Most importantly, it doesn't load the entire file into memory like most editors. – fatcat1111 Aug 13 '09 at 22:58
feedback

Okay, I've tried it with Visual Studio, Emacs and gVim (64 bit).

Emacs chokes, VS opens it but is too sluggish, and gVim kicks ass. I just tried an intentionally generated 500 meg file on gVim, and it opens that too fine without much trouble :)

link|improve this answer
1  
vim is good. vim is best – eddiegroves May 9 '09 at 10:49
3  
This may help: vim.org/scripts/script.php?script_id=1506 – Jeremy Stein Aug 27 '09 at 19:59
show 2 more comments
feedback

One thing is how big files your editor can edit theoretically. But another thing is, is it fast enough to realistically edit that file.

Most editors use the easy way and simply load the whole file in memory. This means that you can not edit files larger than the largest free memory block. This gets even worse if the editor converts ASCII file into Unicode, which doubles the size. With editors like this, just opening the file may take several minutes. But even if you can load the file, any editing operations may be so slow that you really can not do anything.

For editing huge files, VEDIT (non free) is the best choice. It is marketed as the fastest editor on Earth, and it is probably true. In addition, VEDIT uses very little of memory and does not create huge tmp files no matter how big files you are editing. The standard (32-bit) version of VEDIT can edit files up to 2 GB (but you can edit larger files by using the built-in splitter function). VEDIT Pro64 can directly handle files of any size.

UltraEdit is OK, too, but it is not as fast as VEDIT and you may need to change configuration and sacrifice backup and undo for editing large files.

I just opened (copy of) my Outlook .pst file (297 MB) on VEDIT. Opening the file took approximately 0.1 seconds! Searching for a string that was found near the end of file took 8.0 sec in normal mode and 1.1 sec in read-only mode. Inserting and deleting characters were instantenous, as was undo. Saving the file took 11 seconds.

Opening the same file to Ultraedit took 9.8 sec in normal mode and about 1.0 sec if tmp files were disabled. Searching took 11.5 sec (using read-only mode did not have effect on this). Inserting and deleting characters were instantenous, but undo a single character insert took 26 seconds. Saving the file took 16 seconds.

I tried to open the file in Notepad, but it crashed (probably because the file is binary). Opening a 92 MB text file took 3 minutes.

Attempt to load the file on Eclipse default editor caused error "out of java heap space". The same happened even with the 92 MB file.

For more information about many text editors, see:
Wikipedia: Comparison of text editors

link|improve this answer
2  
To clarify, albeit a bit pedantically: Editors using UTF-16 (a specific encoding) will use twice as much memory for files that are not encoded in UTF-16. A Unicode editor using UTF-8 internally opening a UTF-8 file will not use twice as much memory. Nor will a UTF-16 editor opening a UTF-16 file. "Unicode" != "twice as much RAM" – Thanatos Jul 19 '10 at 2:18
show 1 more comment
feedback

Here's another vote to NOT use Notepad++. We are working with huge XML files at my work and Notepad++ will choke on them every-time.

Surprisingly Wordpad performs better on these types of files than Notepad++. I've also had success with UltraEdit although I'm downloading gVIM now to see how it performs.

If you are just looking to validate a large file I've asked that question here and gotten some good responses (XMLStartlet is a nice command line app)

http://stackoverflow.com/questions/40663/validating-a-huge-xml-file

link|improve this answer
1  
How big is huge? I opened a 300mb log file in notepad++ earlier and didn't have any problems viewing/scrolling/searching though it did take maybe 10 seconds or so to open. – Loftx Mar 10 '10 at 12:47
show 3 more comments
feedback

My normal standby is Notepad++, but in this case I have to post specifically to recommend against it. It can handle reasonably large files okay in most cases, but it really struggles with large Xml data.

Something else worth noting: many so-called text editors will treat Xml as more than just text. They'll do validation, folding, and try to create a DOM, resulting in a memory image much larger than the file itself.

Notepad++ is doing something like this, but other editors may do it as well.

link|improve this answer
feedback

My vote is for EditPad. There are lite and pro versions with not much difference between them. I regularly open files of >>100Mb. Plus it lets you select columns of text!

link|improve this answer
1  
EditPad (even Pro) does not support files larger than 2 GB – SergeanT Apr 17 '11 at 20:10
show 2 more comments
feedback

If you're running Windows, TheGun (6144 bytes of MASM goodness) is awesome for this sort of thing - I've opened corrupt mbox files many hundreds of megabytes without a hitch:

http://www.movsd.com/thegun.htm

Another one you may want to consider is Programmer's File Editor (PFE) which is "capable of opening enormous files (limited only by the total amount of virtual memory available)":

http://www.simtel.net/product.php?url_fb_product_page=11983

link|improve this answer
7  
Editors should be able to read files larger than the virtual memory at a minimum. It's just a bit of fseek() and fread() – Charlie Somerville Dec 9 '09 at 10:59
2  
Big thumbs down on TheGun. I think this guy's silly obsession with small EXE sizes and 100% ASM OMG got in the way of making the thing work right. When I did a search of a keyword in a 3GB file that exists near the end, it found nothing. Fail. – Scott Bilas Nov 15 '10 at 19:21
1  
TheGun appears to load the entire file into RAM... – rogerdpack Oct 4 '11 at 23:35
show 1 more comment
feedback

I try to open a 3GB log file in gVim... I stopped the process as it took too long. While in the process of opening the file the *.swp file was growing... I guess it would grow till about the same size of the file itself at the end... I didn't want this. Solution:

:set noswapfile might help speeding things up.

I got this from a nice article from Peter Chen

link|improve this answer
feedback

BBEdit on the Mac will handle them just fine.

Otherwise VIM (or vim -R if you don't need to edit it) will handle it just fine as well.

link|improve this answer
show 3 more comments
feedback

I can attest to Cream. http://cream.sourceforge.net/

Loaded, edited and saved an 850mb file for me in less than a minute. Since it's based on gVim, all the other testimonials for gVim would apply.

Failures: Notepad++, Large Text File Viewer, Notepad2

link|improve this answer
show 3 more comments
feedback

I've opened and browsed 100MB text files with SlickEdit.

link|improve this answer
show 2 more comments
feedback

I've opened 20+ meg log files in Emacs without it breaking a sweat, I can't imagine it would falter at 100+ meg files. There are builds of it for windows too.


UPDATE:

I just on a whim tested a very simple generated XML file in Emacs... 140mb file, and it handled it beautifully. Syntax coloring and everything worked fine, a slight delay when opening the file, but no more than a few seconds. Same with going to the end of the file... otherwise, absolutely no problems.

link|improve this answer
1  
emacs23 (even in fundamental mode) will choke on just a 2MB XML file that is all one line. After reformatting to multiple lines with GNU textutils, emacs is still painfully sluggish with xml-mode syntax highlighting. – p00ya Aug 30 '10 at 6:41
show 3 more comments
feedback

gVIM all the way - I opened a 1 gig text file on windows, there was an initial delay of about 15 secs, but after that it was as smooth as anything. gVIM on Unix was smoother & quicker than on windows.

link|improve this answer
show 1 more comment
feedback

Disk-based file editing: http://www.ultraedit.com/ (Windows only)

link|improve this answer
feedback

I find a regular web browser has no trouble opening large files. I just opened a 220,047kb file on old IE6 without a problem.

link|improve this answer
1  
So IE does have a use after all! – George Edison Mar 5 '11 at 0:57
feedback

You can edit huge files with PilotEdit easily. I tried to edit a file of 7GB.

link|improve this answer
feedback

I have used Textpad for opening a 500+ meg xml file. It was too good. Opened without any glitch.

link|improve this answer
feedback

Nano works just fine.

link|improve this answer
feedback

EditPlus works fine for multi-hundred-megabyte files. Been using it for more years than I care to remember.

link|improve this answer
feedback

I've opened Wikipedia dumps (you may guess the size). So far best option here is gVim. But as it is XML file, you can sneak peek into it (check well-formedness, count entries) with things like Apache Xalan.

link|improve this answer
feedback

XML Copy Editor is a fast, open-source XML editor designed to handle huge files.

Windows and Linux binaries (as well as source) are available and I heard that new versions will also include Mac releases.

Great XML editor — I've used it for over three years.

http://xml-copy-editor.sourceforge.net/

link|improve this answer
show 1 more comment
feedback

I usually use TextPad for anything over 1GB.

Sometimes I have to go hunting through debug logs that are 3-4GB in size, and TextPad is the only thing i have found that will open them (and quickly as well, while still being able to perform searches and normal editing)

I think most decent text editors will open files of a couple of hundred MB. Hell, windows notepad will, if you give it a few minutes to chew away at it, and are not expecting to use the pc for anything else in the meantime)

But for anything over a few hundred MB, I suggest TextPad.

(Please note, my normal editor of choice for anything else is Notepad++, but it struggle with anything over 300MB or so)

link|improve this answer
feedback

I needed one that was a little less technical than Vim and Emacs and free. I found that ConTEXT does a great job handling big files.

link|improve this answer
show 1 more comment
feedback

I tried the following programs: gVim, Notepad++, SQL Work Bench, and 'The Gun'.

Out of all of them, 'The Gun' seems to work the best.

link|improve this answer
feedback

XMLMax will do it AND if the xml file is not well-formed, it will locate the error, show it to you, let you fix it, save it and reload it for you. It should load a 100Mb file in ten seconds. You can Google to find it.

link|improve this answer
feedback

vim and vless (alias vless='/usr/share/vim/vim72/macros/less.sh')

link|improve this answer
feedback
1 2

Not the answer you're looking for? Browse other questions tagged or ask your own question.