0
任何人都可以幫我把文本的編碼格式更改爲unicode嗎?我需要查看阿拉伯字符,現在我正在使用Windows-1256編碼,即使在我的文本文件中,我可以在需要Unicode格式的問號標記字符中,如何實現這一目標?如何使用XSLT將文本文件編碼格式更改爲unicode?
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output media-type="text/xml" indent="yes" omit-xml-declaration="yes" encoding ="windows-1256"/>
輸出統一格式
'encoding'是'xsl:output'的屬性 - 不是'xsl:stylesheet'的屬性。 –
更正。謝謝。 –