topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 19, 2024, 6:47 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: how to open large html files  (Read 14663 times)

kalos

  • Member
  • Joined in 2006
  • **
  • default avatar
  • Posts: 1,823
    • View Profile
    • Donate to Member
how to open large html files
« on: October 09, 2009, 03:03 PM »
hello

is there a program that can open a 42 MB html file?

thanks

Veign

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 993
    • View Profile
    • Veign - Where design meets development
    • Donate to Member
Re: how to open large html files
« Reply #1 on: October 09, 2009, 03:38 PM »
emEditor will open it without a problem.

Question is what are you doing with a 42MB html file?  What's its use?

kalos

  • Member
  • Joined in 2006
  • **
  • default avatar
  • Posts: 1,823
    • View Profile
    • Donate to Member
Re: how to open large html files
« Reply #2 on: October 09, 2009, 04:36 PM »
it is a combined file of many html files that I need to extract the text (by the way most text extraction programs don't work)

emeditor opens it as text, but I need it in web view

JavaJones

  • Review 2.0 Designer
  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 2,739
    • View Profile
    • Donate to Member
Re: how to open large html files
« Reply #3 on: October 09, 2009, 04:49 PM »
"In web view" e.g. as a web browser would view it? Ugh, good luck getting something to parse it that way. Maybe some kind of progressive rendering scheme would work (see Slashdot.org front page), but it'd take forever and probably bring most any browser to its knees.

- Oshyan

f0dder

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 9,153
  • [Well, THAT escalated quickly!]
    • View Profile
    • f0dder's place
    • Read more about this member.
    • Donate to Member
Re: how to open large html files
« Reply #4 on: October 09, 2009, 05:53 PM »
What kind of text extraction do you need?

If you're lucky, perhaps a bit of regex magic could do the extraction... a bit less lucky (and very wellformed HTML) an XML parsing library could probably be used... but no way to tell unless you give some more details :)
- carpe noctem

Veign

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 993
    • View Profile
    • Veign - Where design meets development
    • Donate to Member
Re: how to open large html files
« Reply #5 on: October 09, 2009, 06:24 PM »
If a browser won't open it (try Chrome) then you won't find anything as most 3rd party browser app use one of the rendering engines (IE or Firefox most likely).

MilesAhead

  • Supporting Member
  • Joined in 2009
  • **
  • Posts: 7,736
    • View Profile
    • Donate to Member
Re: how to open large html files
« Reply #6 on: October 09, 2009, 07:16 PM »
If you are running a 64 bit OS try Firefox 64 bit.
http://www.start64.c...;id=25&Itemid=75

MrCrispy

  • Participant
  • Joined in 2006
  • *
  • Posts: 332
    • View Profile
    • Donate to Member
Re: how to open large html files
« Reply #7 on: October 10, 2009, 02:51 AM »
At work we have some log files produced by various tests that are quite large. IE and Firefox have all sorts of problems, esp when searching for text. Chrome works reliably. That being said, it depends a lot on the complexity of the html/javascript/css in the file.

app103

  • That scary taskbar girl
  • Global Moderator
  • Joined in 2006
  • *****
  • Posts: 5,884
    • View Profile
    • Donate to Member
Re: how to open large html files
« Reply #8 on: October 10, 2009, 09:53 PM »
If all else fails, you could try an HTML splitter and break it up into smaller files your browser can handle.

Here is a freeware one I found: http://www.rekenwond...com/htmlsplitter.htm

joiwind

  • Participant
  • Joined in 2009
  • *
  • Posts: 486
  • carpe momentum
    • View Profile
    • Donate to Member
Re: how to open large html files
« Reply #9 on: October 12, 2009, 05:21 PM »
Have you tried Universal Viewer - it might work ?

Curt

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 7,566
    • View Profile
    • Donate to Member
Re: how to open large html files
« Reply #10 on: October 14, 2009, 04:52 AM »
Have you tried Universal Viewer - it might work ?

just be aware of the mode

Q3: What are the limits for files sizes?

A: UltraViewer can show, in Text/Binary/Hex/Unicode modes, files of any size. You can quickly scroll huge files in mentioned view modes, as UV holds in memory only small amount of file data (approximately 120-180 Kb), and not the whole file contents.

But you cannot open huge files in RTF/UTF-8 mode or in Plugins mode, because RichEdit control and most of plugins try to load the whole file contents and this will be very slow and will fail.
-Ultra Viewer FAQ

f0dder

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 9,153
  • [Well, THAT escalated quickly!]
    • View Profile
    • f0dder's place
    • Read more about this member.
    • Donate to Member
Re: how to open large html files
« Reply #11 on: October 14, 2009, 05:00 AM »
But you cannot open huge files in RTF/UTF-8 mode or in Plugins mode, because RichEdit control and most of plugins try to load the whole file contents and this will be very slow and will fail.
That sounds a bit weird - there's nothing about the RichEdit control that requires a full file to be loaded into memory, you can stream in and out as you desire.
- carpe noctem

Lashiec

  • Member
  • Joined in 2006
  • **
  • Posts: 2,374
    • View Profile
    • Donate to Member
Re: how to open large html files
« Reply #12 on: October 14, 2009, 09:36 AM »
Universal Viewer won't help in this particular case, since it uses Trident to parse and render HTML. That is, it would be exactly the same as using IE. If it wasn't for the web view requirement, it would be able to do without a hitch, but so could hundreds of other apps.