История страницы
...
Get text from clipboard Version 5 (Java)
Группа действийAction group: "Базовые действияBase actions", подгруппа subgroup: "Буфер обменаClipboard"
Описание
Действие сохраняет текст из буфера в переменную типа «Строка»
Иконка
Параметры действия
Входные параметры
Таймаут - таймаут ожидания в миллисекундах, если буфер обмена занят другим процессом. По умолчанию: 30000 мс.
Выходные параметры
Результат - переменная, в которую будет сохранен текст из буфера. При неудаче извлечения значения из буфера в результат будет сохранена пустая строка.
...
Description
The action saves a text from a clipboard to a variable of a "String" type.
Action icon
Settings of parameters
Property | Description | Type | Filling example | Mandatory field |
---|---|---|---|---|
Parameters | ||||
Timeout | Timeout in milliseconds if clipboard is opened in another process. Default value is 30 seconds | Numeric | 20000 | No |
Results | ||||
Result | A variable of type |
"String" into which the text from the clipboard will be saved | String |
Особые условия использования
Отсутствуют.
Пример использования
Задача
Из текстового файла необходимо прочитать текст, скопировать в буфер, получить текст из буфера и вывести в диалоговое окно.
Решение
Воспользоваться действиями "Прочитать текстовый файл", "Копировать текст в буфер", "Получить текст из буфера" и "Сообщение".
Реализация
Предусловие
Для решения задачи используется текстовый документ с данными.
...
Special conditions of use
None.
Example of use
Task
From the text file read the text, copy to clipboard, get the text from the clipboard and display it in the dialogue window.
Solution
Use the "Read text file", "Copy text into clipboard", "Get text from clipboard", and "Show message" actions.
Implementation
Preface
To solve the problem the text document with data is used.
- Move the "Read text file" action to the workspace.
- Set the "Read text file" action parameters.
- Move the "Copy text into clipboard" action to the workspace.
- Set the "Copy text into clipboard" action parameters.
In the "Text" field add the "Read text file" action result. - Move the "Get text from clipboard" action to the workspace.
- Set the "Get text from clipboard" action parameter.
- Move the "Show message" to the workspace.
- Set the "Show message" action parameter.
In the "Show message" field add the "Get text from clipboard" action result. - Run robot by clicking "Start" in the top panel.
Result
The program robot completed successfully. The text was obtained from the clipboard and displayed in the dialogue window.
Результат
Программный робот отработал успешно. Текст получен из буфера обмена и выведен в диалоговое окно.