Java Wrapper for x3270 (IBM 3270 terminal emulator)

Java Wrapper for x3270 (IBM 3270 terminal emulator).

Лицензия

Лицензия

MIT License
Группа

Группа

com.github.filipesimoes
Идентификатор

Идентификатор

j3270
Последняя версия

Последняя версия

1.0.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

Java Wrapper for x3270 (IBM 3270 terminal emulator)
Java Wrapper for x3270 (IBM 3270 terminal emulator).
Ссылка на сайт

Ссылка на сайт

http://maven.apache.org
Система контроля версий

Система контроля версий

https://github.com/filipesimoes/j3270

Скачать j3270

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.filipesimoes/j3270/ -->
<dependency>
    <groupId>com.github.filipesimoes</groupId>
    <artifactId>j3270</artifactId>
    <version>1.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.filipesimoes/j3270/
implementation 'com.github.filipesimoes:j3270:1.0.2'
// https://jarcasting.com/artifacts/com.github.filipesimoes/j3270/
implementation ("com.github.filipesimoes:j3270:1.0.2")
'com.github.filipesimoes:j3270:jar:1.0.2'
<dependency org="com.github.filipesimoes" name="j3270" rev="1.0.2">
  <artifact name="j3270" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.filipesimoes', module='j3270', version='1.0.2')
)
libraryDependencies += "com.github.filipesimoes" % "j3270" % "1.0.2"
[com.github.filipesimoes/j3270 "1.0.2"]

Зависимости

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.13.1

Модули Проекта

Данный проект не имеет модулей.

j3270 Release Maven Central

A Java Wrapper for x3270 (IBM 3270 terminal emulator) based on py3270.

It is a Java API for x3270 (Linux) or s3270 (Windows) subprocess.

Compiling

git clone git@github.com:filipesimoes/j3270.git
cd j3270
mvn clean install

Usage

It is necessary to have installed and in your path x3270 emulator.

try (Emulator emulator = new Emulator()) {
  emulator.start();
  emulator.connect("3270host.example.com");
  emulator.waitField(10);

  emulator.fillField(17, 23, "mylogin");
  emulator.fillField(18, 23, "mypass");
  emulator.sendEnter();

  emulator.waitField(10);
  emulator.disconnect();
}

If you need more details, read Emulator class.

Версии библиотеки

Версия
1.0.2