vote up 31 vote down star
12

By big, I mean atleast a hundred megabytes big?

While 100+ megabyte textfiles aren't common (atleast I hope so!), I have an app that's exporting data as XML and needs to be debugged. So, need to look through the XML, and can't do that if the editor is crashy.

flag

67% accept rate
8  
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
3  
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 at 0:36
2  
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. – Johannes Rössel Aug 16 at 10:24

24 Answers

vote up 39 vote down check

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.

Other suggestions are SlickEdit and Emacs, Large Text File Viewer.

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

link|flag
3  
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
2  
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 at 13:45
1  
+1 for Vim. It's my editor of choice. – Steve Rowe May 9 at 4:16
I just tried Notepad++ with a 561MB log file and it said it was too big – barfoon Jun 2 at 14:12
1  
@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 at 23:31
show 3 more comments
vote up 9 vote down

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

link|flag
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
vote up 4 vote down

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|flag
Notepad++ struggles on even smallish files if you try and insert text at the start - somebody didn't do a good data model design – mgb Oct 2 at 16:04
vote up 3 vote down

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|flag
+1 for BBEdit. It's my editor of choice for everything except Objective-C (Xcode wins for Obj-C, because that's what it was built for). – Dave DeLong Aug 27 at 19:59
vote up 3 vote down

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|flag
1  
vim is good. vim is best – eddiegroves May 9 at 10:49
2  
This may help: vim.org/scripts/script.php?script_id=1506/… – Jeremy Stein Aug 27 at 19:59
LargeFile.vim (as pointed by Jeremy Stein) is useful. I was about to add a comment about it. It basically disables the swapfile whenever the file is too big. – Denilson Sá Sep 13 at 1:41
vote up 2 vote down

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

link|flag
As much as I hate to say anything nice about SlickEdit, editing files much larger than available memory is something it is very good at. – Mark Bessey Oct 1 '08 at 21:13
vote up 2 vote down

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|flag
Log files are one thing: Xml is another. You have to create DOM that goes with the file, and I've seen lots of editors choke on even modest xml. – Joel Coehoorn Oct 2 '08 at 2:13
We are talking about Emacs here, not notepad or some wimpy average windows app ;-) Emacs is a very solidly built editor that has been around since the days when micro performance mattered. It was a beast then, but now it is pretty lightweight, and very efficient comparatively. – Mike Stone Oct 2 '08 at 8:44
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
For it's size, TheGun is excellent. – Umber Ferrule Oct 8 at 10:02
vote up 2 vote down

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

link|flag
1  
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 at 22:58
vote up 2 vote down

sed

link|flag
OK, now that's minimalist :-) – Roboprog Aug 27 at 20:26
vote up 2 vote down

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.

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

Nano works just fine.

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

On windows I've used Notepad++. I don't know if Ive edited that large, but certainly many Megs. http://notepad-plus.sourceforge.net/uk/site.htm

I'm not sure of the limit, but Visual Studio 2005 should handle it, and it will allow you to view it as a table (assuming the XML is regular).

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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