glamrockchick
Registered
text edit opens it but it is all jumbled up and i can't read it properly.. any tips so it can be more readable? its a conversation
It is unclear what you mean by "jumbled up," but XML files are plain text and should open without issue in Text Edit, any other text editor, or Xcode. My guess is that the file looks jumbled because you don't recognize standard XML tags in your files. Make sure that your document windows are wide enough so that no source line has to break across two lines. If you have a minimal level of understanding of computer code, then the text may look more familiar.text edit opens it but it is all jumbled up and i can't read it properly.. any tips so it can be more readable? its a conversation
No, XML is the exact opposite of raw data. Data and the script to display it can be embedded within an XML file.Here's my experience with trying to do something with .xml extension, though it may be a short experience, I wasted a lot of hours trying to use an exported .xml file format from one application and importing it into another. The .xml file is a raw data file and just that. A careful choice of a receiving application to import the .xml will import the raw data .xml file format but doesn't know how to put the raw data into nice tables and graphs. Usually a "in between application" needs to to that for you with a need to ask a programmer to help you with the finioshed product. Also, Microsoft basically abandoned the .xml several years ago and is becoming less supported in both Mac and Windows worlds. I would try to stay away from the .xml file format.
As described in my earlier post and as explicitly stated by BjarneDM, this appears to be a text flow issue. XML is a markup language. It looks very much like HTML. Based on the snippet of code that you posted, there is no evidence that there is anything wrong with your XML file. It appears that you are trying to flow the text of the file into a narrow application window. I do not see any Microsoft issues in your posted snippet.nope doesn't seem to open on word and yep was from windows and i transferred it onto my mac because having problems with windows pc.. jumbled up as in: in text edit it comes out like this: <?xml version="1.0"?>
<?xml-stylesheet type='text/xsl' href='MessageLog.xsl'?>
<Log FirstSessionID="1" LastSessionID="4"><Message Date="10/09/2011" Time="18:19:08" DateTime="2011-09-10T17:19:08.999Z" SessionID="1"><From><User FriendlyName="Martin"/></From><To><User FriendlyName="PrInCeSs DoRiT-SaMaNtHa "/></To><Text Style="font-family:Segoe UI; color:#ff00ff; ">have u sent any txts today? none thru yrt</Text></Message><Message Date="10/09/2011" Time="18:19:29" DateTime="2011-09-10T17:19:29.319Z" SessionID="1"><From><User FriendlyName="PrInCeSs DoRiT-SaMaNtHa "/></From><To><User FriendlyName="Martin"/></To><Text Style="font-family:Segoe UI; color:#000000; ">im an
hardly readable like that.. tried to open it with all the things i could think of ..
No, XML is the exact opposite of raw data. Data and the script to display it can be embedded within an XML file.
You contradict yourself. Raw data are raw. No additional formatting other than formatting from the source. No added metaformats. No added mark-up tags. No additional processing. No scripts to perform processing. No added descriptions. No added anything.I agree with midijeep - XML is raw data.
The purpose of XML, HTML and SGML is to function as meta-formats that describe the data. ...