我正在尝试在 PowerShell 脚本中的字符串中捕获 SVN 日志。
在命令行上,输出的编码是正确的,但是一旦我在字符串中捕获它,它就不是:
PS C:\sandbox> svn log -r1804 https://myserver.here/svn/myrepo
--------------------------------------------------------------
r1804 | myname | 2012-06-07 | 1 line
Here is my log message with a special caractère
--------------------------------------------------------------
PS C:\sandbox> $tempStr = svn log -r1804 https://myserver.here/svn/myrepo | Out-String
PS C:\sandbox> $tempStr
--------------------------------------------------------------
r1804 | myname | 2012-06-07 | 1 line
Here is my log message with a special caractére
--------------------------------------------------------------
如果有帮助,这里是我系统上 $OutputEncoding 的值:
IsSingleByte : True
BodyName : us-ascii
EncodingName : US-ASCII
HeaderName : us-ascii
WebName : us-ascii
WindowsCodePage : 1252
IsBrowserDisplay : False
IsBrowserSave : False
IsMailNewsDisplay : True
IsMailNewsSave : True
EncoderFallback : System.Text.EncoderReplacementFallback
DecoderFallback : System.Text.DecoderReplacementFallback
IsReadOnly : True
CodePage : 20127
谢谢 !!
编辑:
我还尝试了 SVN 的 XML 输出如下,但没有运气!
$CmdLine = "svn log -r40:HEAD https://myserver.here/svn/myrepo --xml";
$Logs = [xml](Invoke-Expression $CmdLine);
foreach ($Commit in $Logs.log.logentry)
{
Write-Host $Commit.msg;
}
编辑#2:
我不知道它是否有帮助,但我注意到在 PowerShell 控制台提示符上直接使用 XML 输出格式存在同样的问题:
PS C:\repo> svn log -r999:999
------------------------------------------------------------------------
r999 | myname | 2013-05-29 09:48:20 +0200 (mer., 29 mai 2013) | 2 lines
Log message line #1 with a special 'caractère'
Log message line #2
------------------------------------------------------------------------
PS C:\repo> svn log -r999:999 --xml
<?xml version="1.0" encoding="UTF-8"?>
<log>
<logentry
revision="999">
<author>myname</author>
<date>2013-05-29T07:48:20.915930Z</date>
<msg>Log message line #1 with a special 'caractére'
Log message line #2</msg>
</logentry>
</log>