English 中文(简体)
Sikuli 脚本中的特殊字符
原标题:Special characters in Sikuli script

我试图用一些法国特殊人物 与Sikuli, 当我输入这个 在Sikuli IDE,

App.open( C:\à table\app.exe )

但我明白这个错误:

[log] App.open C:à tableNDC.exe(0)
[error] App.open failed: C:à tableNDC.exe not found

似乎Sikuli目前无法正确处理 utf-8 。 我在 Google 找到的只有类型() 函数的相同问题, 并使用粘贴( ), 使用剪贴板 。

App. Open一案是否有变通办法?

非常感谢。

问题回答

能够创建蝙蝠文件, 并有 App. Open( path/ to/bat/ file.bat) , 里面包含路径到. exe 。

问题的原因似乎在于 Python 2.5.X 不正确支持字符编码 。 人们必须使用编码( cp1252) 、 编码( utf8) 等把戏...

由于Sikuli以Jython为基础 以Python 2.5.2为基础 我们被卡住了!

我希望我生活在一个国家 只使用标准ASCII表格, 我真的讨厌 所有这些问题 与编码和编码。





相关问题
xml and html escaping special characters

i store my article in a xml file, so if i write into it special characters " xml automatically escapes this characters and when i get(via PHP) the xml content i get something like ". so if i write ...

C# Special Characters not displayed propely in XML

i have a string that contains special character like (trademark sign etc). This string is set as an XML node value. But the special character is not rendered properly in XML, shows ??. This is how im ...

Storing special characters in database

Can somebody provide some best practices when storing special characters such as the trademark (tm or r) or copyright (c)? I am storing them in a varchar field with other text in SQL Server, and ...

java regular expression , how to add [ to expression

I want to create a regular expression for strings which uses special characters [ and ]. Value is "[action]". Expression I am using is "[\[[\x00-\x7F]+\]]". I tried doing it by adding \ before ...

热门标签