https://github.com/iamwing/java-dotnet-socket-connector
Library for socket connection between Java & .Net socket
https://github.com/iamwing/java-dotnet-socket-connector
Last synced: about 1 year ago
JSON representation
Library for socket connection between Java & .Net socket
- Host: GitHub
- URL: https://github.com/iamwing/java-dotnet-socket-connector
- Owner: iamWing
- License: mit
- Created: 2017-12-04T05:38:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-14T23:22:15.000Z (over 8 years ago)
- Last Synced: 2025-02-03T21:36:50.188Z (over 1 year ago)
- Language: Java
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Java <-> .Net Socket Connector
A Java library that helps to make TCP/IP connections between a Java & .Net
socket.
PS: This has nothing to do with WebSocket / Socket.IO. At least not atm.
## Getting start
Obviously this library only works on the Java application (Android as well if
it must be said), and for sure a .Net application that accepts socket
connection is needed.
The codec used to encode and decode the message must be the same in both Java &
.Net application. Default codec used in the library is ASCII. Codec from
StandardCharset is recommended.
For more details, please refer to the comments within the code.
## Version history
__v0.1.1 *pre-release*__
- Fixed issue of unhandled exception may be thrown when invoking
`readString(int, String)`
- _Change_ Flush buffer after data sent
__v0.1.0 *pre-release*__
- Implemented connection between Java client socket & .Net server socket
## License & copyright
Copyright (c) 2017 Wing Chau
All rights reserved.
This software may be modified and distributed under the terms
of the MIT license. See the LICENSE file for details.