- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我需要将从 Python 调用的 PowerShell 标准输出解码为 Python 字符串。
我的最终目标是以字符串列表的形式获取 Windows 上网络适配器的名称。我当前的函数如下所示,并且在 Windows 10 上使用英语运行良好:
def get_interfaces():
ps = subprocess.Popen(['powershell', 'Get-NetAdapter', '|', 'select Name', '|', 'fl'], stdout = subprocess.PIPE)
stdout, stdin = ps.communicate(timeout = 10)
interfaces = []
for i in stdout.split(b'\r\n'):
if not i.strip():
continue
if i.find(b':')<0:
continue
name, value = [ j.strip() for j in i.split(b':') ]
if name == b'Name':
interfaces.append(value.decode('ascii')) # This fails for other users
return interfaces
其他用户使用不同的语言,因此 value.decode('ascii')
对其中一些用户失败。例如。一位用户报告说,更改为 decode('ISO 8859-2')
对他来说效果很好(因此它不是 UTF-8)。我如何知道编码以解码调用 PowerShell 返回的标准输出字节?
更新
经过一些实验,我更加困惑了。 chcp
在我的控制台中返回的代码页是 437。我将网络适配器名称更改为包含非 ASCII 和非 cp437 字符的名称。在运行 Get-NetAdapter | 的交互式 PowerShell session 中选择名称 | fl
,它正确地显示了名称,甚至是它的非 CP437 字符。当我从 Python 调用 PowerShell 时,非 ASCII 字符被转换为最接近的 ASCII 字符(例如,ā 到 a,ž 到 z)并且 .decode(ascii)
工作得很好。此行为(以及相应的解决方案)是否取决于 Windows 版本?我使用的是 Windows 10,但用户可能使用的是旧版 Windows 直至 Windows 7。
最佳答案
输出字符编码可能取决于特定的命令,例如:
#!/usr/bin/env python3
import subprocess
import sys
encoding = 'utf-32'
cmd = r'''$env:PYTHONIOENCODING = "%s"; py -3 -c "print('\u270c')"''' % encoding
data = subprocess.check_output(["powershell", "-C", cmd])
print(sys.stdout.encoding)
print(data)
print(ascii(data.decode(encoding)))
cp437
b"\xff\xfe\x00\x00\x0c'\x00\x00\r\x00\x00\x00\n\x00\x00\x00"
'\u270c\r\n'
✌ ( U+270C ) 字符接收成功。
子脚本的字符编码是在 PowerShell session 中使用 PYTHONIOENCODING
envvar 设置的。我选择了 utf-32
作为输出编码,这样它就不同于用于演示的 Windows ANSI 和 OEM 代码页。
请注意,父 Python 脚本的标准输出编码是 OEM 代码页(在本例中为 cp437
)——该脚本从 Windows 控制台运行。如果您将父 Python 脚本的输出重定向到文件/管道,则 Python 3 默认使用 ANSI 代码页(例如,cp1252
)。
要解码可能包含当前 OEM 代码页中无法解码的字符的 powershell 输出,您可以临时设置 [Console]::OutputEncoding
(受 @eryksun's comments 启发):
#!/usr/bin/env python3
import io
import sys
from subprocess import Popen, PIPE
char = ord('✌')
filename = 'U+{char:04x}.txt'.format(**vars())
with Popen(["powershell", "-C", '''
$old = [Console]::OutputEncoding
[Console]::OutputEncoding = [Text.Encoding]::UTF8
echo $([char]0x{char:04x}) | fl
echo $([char]0x{char:04x}) | tee {filename}
[Console]::OutputEncoding = $old'''.format(**vars())],
stdout=PIPE) as process:
print(sys.stdout.encoding)
for line in io.TextIOWrapper(process.stdout, encoding='utf-8-sig'):
print(ascii(line))
print(ascii(open(filename, encoding='utf-16').read()))
cp437
'\u270c\n'
'\u270c\n'
'\u270c\n'
fl
和 tee
都使用 [Console]::OutputEncoding
作为标准输出(默认行为就像是 | Write-输出
附加到管道)。 tee
使用 utf-16,将文本保存到文件中。输出显示✌(U+270C)解码成功。
$OutputEncoding
用于解码管道中间的字节:
#!/usr/bin/env python3
import subprocess
cmd = r'''
$OutputEncoding = [Console]::OutputEncoding = New-Object System.Text.UTF8Encoding
py -3 -c "import os; os.write(1, '\U0001f60a'.encode('utf-8')+b'\n')" |
py -3 -c "import os; print(os.read(0, 512))"
'''
subprocess.check_call(["powershell", "-C", cmd])
b'\xf0\x9f\x98\x8a\r\n'
这是正确的:b'\xf0\x9f\x98\x8a'.decode('utf-8') == u'\U0001f60a'
。使用默认的 $OutputEncoding
(ascii),我们将得到 b'????\r\n'
。
注意:
b'\n'
被替换为 b'\r\n'
尽管使用二进制 API,例如 os.read/os.write
(msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
在这里没有效果)b'\r\n'
:
#!/usr/bin/env python3
from subprocess import check_output
cmd = '''py -3 -c "print('no newline in the input', end='')"'''
cat = '''py -3 -c "import os; os.write(1, os.read(0, 512))"''' # pass as is
piped = check_output(['powershell', '-C', '{cmd} | {cat}'.format(**vars())])
no_pipe = check_output(['powershell', '-C', '{cmd}'.format(**vars())])
print('piped: {piped}\nno pipe: {no_pipe}'.format(**vars()))
输出:
piped: b'no newline in the input\r\n'
no pipe: b'no newline in the input'
换行符附加到管道输出。
如果我们忽略单独的代理项,那么设置 UTF8Encoding
允许通过管道传递所有 Unicode 字符,包括非 BMP 字符。如果配置了 $env:PYTHONIOENCODING = "utf-8:ignore"
,则可以在 Python 中使用文本模式。
In interactive powershell running
Get-NetAdapter | select Name | fl
displayed correctly the name even its non-cp437 character.
如果未重定向标准输出,则使用 Unicode API,将字符打印到控制台——如果控制台 (TrueType) 字体支持,任何 [BMP] Unicode 字符都可以显示。
When I called powershell from python non-ascii characters were converted to closest ascii characters (e.g. ā to a, ž to z) and .decode(ascii) worked nicely.
这可能是由于 System.Text.InternalDecoderBestFitFallback
为 [Console]::OutputEncoding
设置的——如果 Unicode 字符不能在给定的编码中编码然后将其传递给回退(使用最适合的字符或 '?'
代替原始字符)。
Could this behavior (and correspondingly solution) be Windows version dependent? I am on Windows 10, but users could be on older Windows down to Windows 7.
如果我们忽略 cp65001 中的错误和后续版本支持的新编码列表,那么行为应该是相同的。
关于windows - 将可能包含非 ASCII Unicode 字符的 PowerShell 输出解码为 Python 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33936074/
我正在寻找实现 PowerShell 提供程序 在 电源外壳。 我一直在想,如果我只是定义类型,然后将它们导入我的 session (导入模块),我应该能够让它们可用。 例如,这个 不工作但它沿着我想
我创建的脚本使用了组件,这些组件仅在32位版本的Powershell中可用。 默认情况下,Windows使用Powershell x64执行脚本,这会导致一些错误。 是一种在脚本开头设置值以强制Win
是否可以从 Powershell 中检测它是否是嵌套 shell? 如果我打开 Powershell 或 cmd.exe 窗口,然后输入 powershell 在那里,是否有一个神奇的 $host.s
随着 PowerShell Core 的发布,应用程序在使用托管自动化库 (system.management.automation) 时如何选择调用哪个版本的 Powershell(Powershe
最近,我加入了我企业的 Windows 团队,凭借我的开发人员背景(一般是 Java、.NET 和 Web),我很快就对 PowerShell 产生了兴趣。我可以看到它比普通的旧批处理文件、VB 更有
假设我有一个 powershell 脚本,它在我当前路径的相对路径中包含一个 Powershell 哈希。让我们称之为“name.ps1”,它包含: $names = @{ "bob" = "b
我想为我正在构建的自定义 Powershell Commandlet 使用 SqlServerCmdletSnapin。如果我将以下代码添加到 PSM1 的开头: if ( (Get-PSSnapin
如何调用从 PowerShell 脚本中获取命名参数的 PowerShell 脚本? foo.ps1: param( [Parameter(Mandatory=$true)][String]$a=''
我即将为 Windows 管理员编写一个 PowerShell 脚本,以帮助他们完成与部署 Web 应用程序相关的某些任务。 有什么理由让我应该赞成或排除开发 PowerShell 模块 (.psm1
我的 powershell 模块有一个函数,我希望它返回一个非零退出代码。但是,作为一个模块函数,当我运行 Import-Module 时,它会加载到 powershell 控制台的上下文中。所以,当
我在这个问题上花了最后 4 个小时,非常感谢您提供的任何意见。 我需要使用不同的凭据调用 powershell 脚本并将参数传递给该脚本。 安装 WISEScript 中包装的程序后,此脚本开始收集机
我有一个场景,我需要将 powershell 命令的命令和输出转发到另一个进程以进行日志记录和处理。 我希望这个控制台尽可能接近 powershell,因此不希望将它简单地托管在另一个控制台程序中。
我正在尝试让一个主 PowerShell 脚本运行所有其他脚本,同时等待 30-60 秒以确保完成任务。我尝试过的所有其他操作都不会停止/等待第一个脚本及其进程完成,然后才能同时完成所有其他脚本,并且
我正在编写一个脚本来使用多个 plink (PuTTY) session 作为 Windows 版本的 clustersh。然而,我陷入困境,因为我想从 powershell 打开多个 Powersh
我读了这个答案:How to Open Powershell from Powershell start powershell 这将打开基础的大分辨率 PS 实例。如何打开 PS(x86)? 最佳答案
我很想知道我们是否可以在 Powershell 中做到这一点。 使用 Out-File 命令,我们可以通过管道将其输出写入文件。这样我就可以将我所有的历史命令发送到一个文本文件中。 问题是我可以在每次
我在 about_Pipelines 阅读了有关 PowerShell 中的管道工作原理的信息,并了解到管道一次传送一个对象。 所以,这个 Get-Service | Format-Table -Pr
我正在尝试像这样从 powershell 启动一个进程:- $proc = (start-process $myExe -argumentList '/myArg True' -windowStyle
## To run the script # .\get_status.ps1 -Hostname -Service_Action -Service_Name #$Hostname = "hos
让我们使用 powershell 命令 Write-Host "red text"-Fore red这会在红色前景中显示“红色文本”。 但是,您希望文本以稍微亮一点的方式显示字体颜色,浅红色。 有没有
我是一名优秀的程序员,十分优秀!