[問題] 請問我的MSN對話紀錄是.XSL檔是一堆亂碼,請問可以開嗎?

看板Web_Design作者 (acobi)時間16年前 (2009/10/03 09:35), 編輯推噓0(002)
留言2則, 2人參與, 最新討論串1/1
大家好~ 我的MSN對話紀錄的檔名是.XSL檔,而不是xml檔,以至於變成一堆亂碼~ 裡頭內容對我相當超級無比重要,內容如下~ 請各位高手能幫忙~ 是否可否幫我轉成繁體中文,讓我得知內容! 我的e-mail:velia0208@yahoo.com.tw 超級無限感激! <?xml version="1.0" ?> - <xsl:stylesheet version="1.0" xmlns:xsl="" rel="nofollow">http://www.w3.org/1999/XSL/Transform"> - <!-- localized strings --> <xsl:variable name="ColumnHeader_Date">日期</xsl:variable> <xsl:variable name="ColumnHeader_Time">時間</xsl:variable> <xsl:variable name="ColumnHeader_From">傳訊者</xsl:variable> <xsl:variable name="ColumnHeader_To">收訊者</xsl:variable> <xsl:variable name="ColumnHeader_Message">訊息</xsl:variable> - <!-- variables --> <xsl:variable name="Debug">0</xsl:variable> <xsl:variable name="TableStyle">font-family:MS Shell Dlg 2; font-size:75%; text-align:left; vertical-align:top; table-layout:fixed</xsl:variable> <xsl:variable name="GutterStyle">width:2ex</xsl:variable> <xsl:variable name="HeaderStyle">border-bottom:1 solid black</xsl:variable> <xsl:variable name="UseZebraStripe">1</xsl:variable> <xsl:variable name="ZebraStripeStyle">background-color:#e0edff</xsl:variable> <xsl:variable name="MostRecentSessionFirst">0</xsl:variable> - <xsl:template match="Log"> - <html dir="ltr"> - <head> - <title> Message Log for <xsl:value-of select="@LogonName" /> <xsl:if test="$Debug = 1">(Debug)</xsl:if> </title> - <xsl:if test="$Debug = 1"> <span style="font-family:trebuchet ms; font-size:120%">Debug Version</span> <hr /> </xsl:if> </head> - <body style="margin:0"> - <table id="BodyTable" style="{$TableStyle}" cellspacing="0"> - <xsl:if test="$Debug = 1"> <col style="vertical-align:top; width:5ex;" /> <col style="{$GutterStyle}" /> </xsl:if> <col style="width:16ex;" /> <col style="{$GutterStyle}" /> <col style="width:16ex;" /> <col style="{$GutterStyle}" /> <col style="width:21ex;" /> <col style="{$GutterStyle}" /> <col style="width:21ex;" /> <col style="{$GutterStyle}" /> <col style="width:70ex;" /> - <thead> - <tr> - <xsl:if test="$Debug = 1"> <th style="{$HeaderStyle}">SID</th> <th /> </xsl:if> - <th style="{$HeaderStyle}"> <xsl:value-of select="$ColumnHeader_Date" /> </th> <th /> - <th style="{$HeaderStyle}"> <xsl:value-of select="$ColumnHeader_Time" /> </th> <th /> - <th style="{$HeaderStyle}"> <xsl:value-of select="$ColumnHeader_From" /> </th> <th /> - <th style="{$HeaderStyle}"> <xsl:value-of select="$ColumnHeader_To" /> </th> <th /> - <th style="{$HeaderStyle}"> <xsl:value-of select="$ColumnHeader_Message" /> </th> </tr> </thead> - <tbody style="vertical-align:top"> - <xsl:choose> - <!-- newest session first --> - <xsl:when test="$MostRecentSessionFirst = 1"> - <xsl:apply-templates> <xsl:sort select="@SessionID" order="descending" data-type="number" /> <xsl:sort select="@DateTime" order="ascending" /> </xsl:apply-templates> </xsl:when> - <!-- oldest session first --> - <xsl:otherwise> - <xsl:apply-templates> <xsl:sort select="@SessionID" order="ascending" data-type="number" /> <xsl:sort select="@DateTime" order="ascending" /> </xsl:apply-templates> </xsl:otherwise> </xsl:choose> </tbody> </table> </body> </html> </xsl:template> - <xsl:template match="Message"> - <tr> <xsl:call-template name="CommonMessageProcessing" /> - <td> <xsl:apply-templates select="From/User" /> </td> <td /> - <td> <xsl:apply-templates select="To/User" /> </td> <td /> - <td> - <span> - <xsl:attribute name="style"> <xsl:value-of select="Text/@Style" /> </xsl:attribute> <xsl:value-of select="Text" /> </span> </td> </tr> </xsl:template> - <xsl:template match="Invitation|InvitationResponse|Join|Leave"> - <tr> <xsl:call-template name="CommonMessageProcessing" /> <td /> - <!-- From --> <td /> <td /> - <!-- To --> <td /> - <td> - <span> - <xsl:attribute name="style"> <xsl:value-of select="Text/@Style" /> </xsl:attribute> <xsl:value-of select="Text" /> </span> </td> </tr> </xsl:template> - <xsl:template match="User"> - <!-- add a comma before all but the first user --> <xsl:if test="position() != 1">,</xsl:if> <xsl:value-of select="@FriendlyName" /> </xsl:template> - <xsl:template name="CommonMessageProcessing"> - <!-- zebra-stripe the sessions --> - <xsl:if test="$UseZebraStripe = 1"> - <xsl:if test="(@SessionID mod 2) = 1"> - <xsl:attribute name="style"> <xsl:value-of select="$ZebraStripeStyle" /> </xsl:attribute> </xsl:if> </xsl:if> - <xsl:if test="$Debug = 1"> - <td> <xsl:value-of select="@SessionID" /> </td> <td /> </xsl:if> - <td> <xsl:value-of select="@Date" /> </td> <td /> - <td> <xsl:value-of select="@Time" /> </td> <td /> </xsl:template> </xsl:stylesheet> -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 219.81.236.65

10/03 10:43, , 1F
.............
10/03 10:43, 1F

10/03 11:02, , 2F
原來這叫做亂碼= = 先搞清楚對話紀錄存檔位置比較實在...
10/03 11:02, 2F
文章代碼(AID): #1AngfZTO (Web_Design)