3

我可以使用Java Access Bridge事件从 Java 应用程序中的 UI 控件(按钮/编辑框/复选框等)中捕获文本。我怎样才能:

  1. 在编辑框中设置文本
  2. 点击一个按钮

使用 Java Access Bridge API 调用?

4

2 回答 2

8

这是我为我的项目所做的。创建一个基类 API,将所有 PInvokes 调用到 JAB WindowsAccessBridge DLL 中。如果您使用的是 64 位操作系统,请确保以正确的 DLL 名称为目标。使用 getAccessibleContextFromHWND 函数从 Windows 句柄获取 VmID 和上下文。通过枚举子项在 Java 窗口中找到文本框或按钮。一旦您找到您正在寻找的控件,文本框或按钮就会执行该操作。

1) 设置文本

public string Text
{
    get 
    {
        return GetText();
    }
    set
    {
        if (!API.setTextContents(this.VmId, this.Context, value))
            throw new AccessibilityException("Error setting text");
    }
}

private string GetText()
{
    System.Text.StringBuilder sbText = new System.Text.StringBuilder();

    int caretIndex = 0;

    while (true)
    {
        API.AccessibleTextItemsInfo ti = new API.AccessibleTextItemsInfo();
        if (!API.getAccessibleTextItems(this.VmId, this.Context, ref ti, caretIndex))
            throw new AccessibilityException("Error getting accessible text item information");

        if (!string.IsNullOrEmpty(ti.sentence))
            sbText.Append(ti.sentence);
        else               
            break;

        caretIndex = sbText.Length;

    }

    return sbText.ToString().TrimEnd();
}

2) 点击一个按钮

public void Press()
{
    DoAction("click");
}

protected void DoAction(params string[] actions)
{
    API.AccessibleActionsToDo todo = new API.AccessibleActionsToDo()
    {
        actionInfo = new API.AccessibleActionInfo[API.MAX_ACTIONS_TO_DO],
        actionsCount = actions.Length,
    };

    for (int i = 0, n = Math.Min(actions.Length, API.MAX_ACTIONS_TO_DO); i < n; i++)
        todo.actionInfo[i].name = actions[i];

    Int32 failure = 0;
    if (!API.doAccessibleActions(this.VmId, this.Context, ref todo, ref failure))
        throw new AccessibilityException("Error performing action");
}

核...

public API.AccessBridgeVersionInfo VersionInfo
{
    get { return GetVersionInfo(this.VmId); }
}

public API.AccessibleContextInfo Info
{
    get { return GetContextInfo(this.VmId, this.Context); }
}

public Int64 Context
{
    get;
    protected set;
}

public Int32 VmId
{
    get;
    protected set;
}
于 2014-04-18T21:33:53.150 回答
1

我会将你的 GUI 组件的AccessibleContext子类化,并为它提供一个accessibleAction对象。使AccessibleContext.getAccessibleAction()返回您的对象。

如果它不为空,它会为屏幕阅读器提供支持的操作列表,可以通过屏幕阅读器调用doAction来调用它。

于 2013-10-04T17:34:24.050 回答