Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/takwolf-deprecated/java-morsecoder
摩尔斯电码翻译器的一个 Java 语言实现。使用了非标准方式支持 Unicode 编码。
https://github.com/takwolf-deprecated/java-morsecoder
morse
Last synced: 3 days ago
JSON representation
摩尔斯电码翻译器的一个 Java 语言实现。使用了非标准方式支持 Unicode 编码。
- Host: GitHub
- URL: https://github.com/takwolf-deprecated/java-morsecoder
- Owner: TakWolf-Deprecated
- License: apache-2.0
- Archived: true
- Created: 2017-04-30T21:50:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-08T05:48:35.000Z (over 5 years ago)
- Last Synced: 2024-11-15T12:07:39.522Z (3 days ago)
- Topics: morse
- Language: Java
- Homepage:
- Size: 27.3 KB
- Stars: 12
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Java - MorseCoder #
[![Build Status](https://travis-ci.org/TakWolf/Java-MorseCoder.svg?branch=master)](https://travis-ci.org/TakWolf/Java-MorseCoder)
[![Bintray](https://api.bintray.com/packages/takwolf/maven/Java-MorseCoder/images/download.svg)](https://bintray.com/takwolf/maven/Java-MorseCoder/_latestVersion)
[![License](https://img.shields.io/github/license/TakWolf/Java-MorseCoder.svg)](http://www.apache.org/licenses/LICENSE-2.0)A Java implementation for Morse Code translation. Use non-standard way to support Unicode.
摩尔斯电码翻译器的一个 Java 语言实现。使用了非标准方式支持 Unicode 编码。
兼容 Android 环境。
## 关于摩尔斯电码 ##
请参考:[维基百科 -> 摩尔斯电码](https://zh.wikipedia.org/wiki/摩尔斯电码)
具体实现思路,请参考文章 [http://blog.takwolf.com/2017/05/02/java-morse-coder](http://blog.takwolf.com/2017/05/02/java-morse-coder)
## 用法 ##
### Gradle ###
``` gradle
dependencies {
implementation 'com.takwolf:morse-coder:0.0.4'
}repositories {
jcenter()
}
```### Java ###
``` java
MorseCoder morseCoder = new MorseCoder();
morseCoder.encode("Hello World!");
morseCoder.decode("...././.-../.-../---/-...../.--/---/.-./.-../-../-.-.--/");
```## 实现 ##
### 标准字典 ###
注意:字母都会转换为大写,0 为短信号,1 为长信号。
| 字符 | 电码 |
|---|---|
| A | 01 |
| B | 1000 |
| C | 1010 |
| D | 100 |
| E | 0 |
| F | 0010 |
| G | 110 |
| H | 0000 |
| I | 00 |
| J | 0111 |
| K | 101 |
| L | 0100 |
| M | 11 |
| N | 10 |
| O | 111 |
| P | 0110 |
| Q | 1101 |
| R | 010 |
| S | 000 |
| T | 1 |
| U | 001 |
| V | 0001 |
| W | 011 |
| X | 1001 |
| Y | 1011 |
| Z | 1100 || 字符 | 电码 |
|---|---|
| 0 | 11111 |
| 1 | 01111 |
| 2 | 00111 |
| 3 | 00011 |
| 4 | 00001 |
| 5 | 00000 |
| 6 | 10000 |
| 7 | 11000 |
| 8 | 11100 |
| 9 | 11110 || 字符 | 电码 |
|---|---|
| . | 010101 |
| , | 110011 |
| ? | 001100 |
| ' | 011110 |
| ! | 101011 |
| / | 10010 |
| ( | 10110 |
| ) | 101101 |
| & | 01000 |
| : | 111000 |
| ; | 101010 |
| = | 10001 |
| + | 01010 |
| - | 100001 |
| _ | 001101 |
| " | 010010 |
| $ | 0001001 |
| @ | 011010 |### 其他 Unicode 字符 ###
编码时,直接将 codePoint 转换为 2 进制字符串,然后 0 替换为短信号,1 替换为长信号。
解码时反之。
该思路来源于:[https://github.com/hustcc/xmorse](https://github.com/hustcc/xmorse)
你也可以通过这个网址进行在线测试:[http://git.hust.cc/xmorse](http://git.hust.cc/xmorse)
## Author ##
TakWolf
[[email protected]](mailto:[email protected])
[http://takwolf.com](http://takwolf.com)
## License ##
```
Copyright 2017 TakWolfLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```