Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.binarywang:java-emoji-converter:1.0.2'
}
dependencies {
implementation("com.github.binarywang:java-emoji-converter:1.0.2")
}
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>java-emoji-converter</artifactId>
<version>1.0.2</version>
</dependency>
libraryDependencies += "com.github.binarywang" % "java-emoji-converter" % "1.0.2"
:dependencies [[com.github.binarywang/java-emoji-converter "1.0.2"]]
Emoji转换工具,便于各种规格客户端生成的Emoji字符串转换成另外一种格式。
A tool to convert emoji string among each type, like softbank emoji, unicode emoji, alias emoji, html emoji.
When converting softbank emoji to unicode, we utilize this file: https://raw.githubusercontent.com/googlei18n/emoji4unicode/master/data/emoji4unicode.xml
Add this in your maven pom file(将以下内容加入你的maven的pom文件中):
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>java-emoji-converter</artifactId>
<version>1.0.2</version>
</dependency>
private EmojiConverter emojiConverter = EmojiConverter.getInstance();
@Test
public void testToAlias() {
String str = " An 😃😀awesome 😃😃string with a few 😃😉emojis!";
String alias = this.emojiConverter.toAlias(str);
System.out.println(str);
System.out.println("EmojiConverterTest.testToAlias()=====>");
System.out.println(alias);
Assert.assertEquals(
":no_good: :ok_woman: :couple_with_heart:An :smiley::grinning:awesome :smiley::smiley:string with a few :smiley::wink:emojis!",
alias);
}
@Test
public void testToHtml() {
String str = " An 😀😃awesome 😃😃string with a few 😉😃emojis!";
String result = this.emojiConverter.toHtml(str);
System.out.println(str);
System.out.println("EmojiConverterTest.testToHtml()=====>");
System.out.println(result);
Assert.assertEquals(
"🙅 🙆 💑An 😀😃awesome 😃😃string with a few 😉😃emojis!",
result);
}
@Test
public void testToUnicode() {
String str = " :smiley: :grinning: :wink:";
String result = this.emojiConverter.toUnicode(str);
System.err.println(str);
System.err.println("EmojiConverterTest.testToUnicode()=====>");
System.err.println(result);
Assert.assertEquals("🙅 🙆 💑 😃 😀 😉", result);
}