There are plenty of 'heavyweight' tools such as XmlSpy, which are good for prodding around in xml docs - but often (very often in some cases!) you just want to quickly open and browse an xml doc, and have it pretty printed. Possibly with some basic search functionality (textual is probably fine).
SMS Backup Reader (PC/Mac/*nix/Web) SMS Backup Reader is designed to read the XML backup files produced by the Android app SMS Backup & Restore by Ritesh. There are two versions of SMS Backup Reader. They are both open source and are published under the name devadvance.
I usually use a browser such as IE of Firefox for this, but they tend to break down for larger file sizes (I'm often opening files in the 10s of MBs or more).
I have some ideas about how such a viewer might be implemented, so I'm sure there must be something out there that can do it, but my google-fu is letting me down.
So I thought I'd put it to the hive-mind that is SO to lead the way.
Thoughts?
Tshepangclosed as not constructive by KevOct 31 '12 at 0:39
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. If this question can be reworded to fit the rules in the help center, please edit the question.
9 Answers
firstobject's 605k download lightweight native Windows free XML editor opens a 50MB file in 1.3 seconds and provides text editing, search, syntax-colored printing, plus tree view and additional XML features including formatting and full-blown CMarkup scripting built in. You can reformat an entire 50MB XML document to a different indentation (takes 3 seconds on a nothing special 2.3GHz/2GB machine).
Ben BryantBen BryantXML Copy Editor is perfect for this type of thing.
yalestaryalestarI like the viewer of Total Commander because it only loads the text you actually see and so is very fast. Of course, it is just a text/hex viewer, so it won't format your XML, but you can use a basic text search.
schnaaderschnaaderI have tried dozens of XML editors hoping to find one which would be able to do some kind of visualization. The best lightweight viewer for windows I have found was XMLMarker - too bad the project has been dead for some years now. It is not so useful as an editor, but it does a good job of displaying flat XML data as tables.
There are tons of free editors that do XML syntax highlighting, including vim, emacs, scite, eclipse (J2EE edition), jedit, notepad++.
For heavyweight XML features, like XPath support, XSLT editing and debugging, SOAP/WSDL there are some good commercial tools like, XMLSpy, Oxygen, StylusStudio.
JEdit is open-source and also has plugins for XML, XPath and XSLT.
Word-2003 is fairly good for visualizing (but don't use it for editing). Excel-2003 and up also does a good job at visualizing flat XML data and can apply XSL transformations (again, no good as an editor).
http://www.firstobject.com/dn_editor.htm is so far the best and lightest editor available with handful of utilities. I recommend using it - tried with up to 400 MB of files and more than a million records :)
doubleDownI like Microsoft's XML Notepad 2007, but I don't know how it handles very large files, sorry.
user39603user39603TextPad has a free xmltidy plugin that pretty-prints your XML. Nice and fast, although TextPad is shareware.
skaffmanskaffmanXml Reader For Mac Free
Not the answer you're looking for? Browse other questions tagged xmlbrowserviewer or ask your own question.
I tried a lot in google to find a XML viewer,which only display the content not the meta tags.But i failed to find one.Can any one suggest some free XML viewers for mac OSX?
I want some thing like this...
Xml Parsing Mac Os X
Input:
Output:
1 Answer
Well you can drop your provided xml file on Safari or Chrome and it will strip tags, but unfortunately there will be no line breaks. Firefox has a nice collapsible tree view. You can add a similar view to Safari with this plugin: http://www.entropy.ch/software/macosx/xmlviewplugin/
If you really need that identical output, I would add a tiny little bit of xslt, which will transform the xml to whatever you want. My favourite tool for doing xslt is http://www.entropy.ch/software/macosx/#testxsltYou can then view the transform in any modern browser, or in TextXSLT.
HTH, J