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?
|
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? | ||||
|
show 6 more comments
feedback
|
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.
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.
|
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
| |||||||||||||||||||||
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.:
(start at line 1 million and stop at line 2 million, sift the output manually in "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 :-) | |||||||||||||
feedback
|
|
I've found that UltraEdit32 (non free) does pretty well loading large text files (including XML). | |||||||||
feedback
|
|
I've been using EmEditor (non free) and it handles huge text files with no problem. (hundreds of MB and up) | |||||
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 :) | |||||||||
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: | |||||
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 | |||||
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. | ||||
|
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! | |||||
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)": | |||||||||||||
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 | ||||
|
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. | ||||
|
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 | ||||
|
feedback
|
|
I've opened and browsed 100MB text files with SlickEdit. | ||||
|
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. | |||||
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. | ||||
|
feedback
|
|
Disk-based file editing: http://www.ultraedit.com/ (Windows only) | ||||
|
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. | |||||
feedback
|
|
| ||||
|
feedback
|
|
You can edit huge files with PilotEdit easily. I tried to edit a file of 7GB. | ||||
|
feedback
|
|
I have used Textpad for opening a 500+ meg xml file. It was too good. Opened without any glitch. | ||||
|
feedback
|
|
EditPlus works fine for multi-hundred-megabyte files. Been using it for more years than I care to remember. | ||||
|
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. | ||||
|
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. | ||||
|
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) | ||||
|
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. | ||||
|
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. | ||||
|
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. | ||||
|
feedback
|
logrotate? – Thanatos Jul 19 '10 at 2:11