Closed tuchida closed 5 years ago
Rjb 1.5.9 and below does not modify UTF-8 to CESU-8. https://docs.oracle.com/javase/7/docs/technotes/guides/jni/spec/types.html#wp16542
I'll fix this issue.
Hi tuchida Sorry for late response. I fixed this issue and pushed rjb-1.6.0.gem to rubygem.org. I added below test case and got green.
def test_java_utf8
y = @jString.new('𠮷野家')
assert_equal '𠮷野家', y.toString
end
Thank you! I confirmed it work good.
I want to use emoji in UTF-8. What should I do?