https://github.com/OneManCrew/vertx-tftp-client
TFTP client for vertx
https://github.com/OneManCrew/vertx-tftp-client
async asynchronous maven tftp tftp-client tftp-protocol vertx vertx3
Last synced: about 1 month ago
JSON representation
TFTP client for vertx
- Host: GitHub
- URL: https://github.com/OneManCrew/vertx-tftp-client
- Owner: OneManCrew
- License: mit
- Created: 2020-02-12T10:10:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-07T18:41:13.000Z (about 4 years ago)
- Last Synced: 2024-08-04T01:06:55.116Z (11 months ago)
- Topics: async, asynchronous, maven, tftp, tftp-client, tftp-protocol, vertx, vertx3
- Language: Java
- Size: 49.8 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- vertx-awesome - Vert.x TFTP Client - TFTP client for Vert.x support download/upload files. (Integration)
README
# Vert.x TFTP Client
[](https://opensource.org/licenses/MIT)
[](https://search.maven.org/search?q=g:%22io.github.onemancrew%22%20AND%20a:%22vertx-tftp-client%22)
[  ](https://bintray.com/onemancrew/vertx/vertx-tftp-client/1.0/link)vertx-tftp-client is a simple async tftp client which works with vert.x v3.
The Following Java project implements the TFTP protocol and builds a TFTP client. Scope of the client is to upload and download files from a remote TFTP server.
I have used Vert.x to implement this project as asynchronously.To use this component, add the following dependency to the dependencies section of your build descriptor:
Maven (in your pom.xml):
````io.github.onemancrew
vertx-tftp-client
1.0````
Gradle:
````
implementation 'io.github.onemancrew:vertx-tftp-client:1.0'
````
ivy:
````
````
#### Creating TFTP Client
````
Vertx vertx = Vertx.vertx();
TftpClient client =new TftpClient(vertx,tftpServerIp,port);//default port 69
``````#### Upload files
````
client.upload("filePath",(progress)->{
//progress will update every change in the upload progress.
},
(result)->{
if (result.succeeded()) {
System.out.println("upload succeeded");
} else {
System.out.println("error upload file" + result.cause().getMessage());
}
});
````#### Download file
````
client.download(fileName,downloadFoler,(result)->{
(result)->{
if (result.succeeded()) {
System.out.println("download succeeded");
} else {
System.out.println("error download file" + result.cause().getMessage());
}
});
````
#### Error Code Description
In case of TttpError Exception this id the description for each error code:| ErrorCode | Description |
|:---------:|:---------------------------------:|
| 1 | File not found. |
| 2 | Access violation. |
| 3 | Disk full or allocation exceeded. |
| 4 | Illegal TFTP operation. |
| 5 | Unknown transfer ID. |
| 6 | File already exists. |
| 7 | No such user. |#### TFTP Upload Protocol:
#### TFTP Download Protocol:
