-
Bug
-
Resolution: Duplicate
-
P4
-
jfx12
-
x86
-
os_x
ADDITIONAL SYSTEM INFORMATION :
macOS Mojave 10.14.6
A DESCRIPTION OF THE PROBLEM :
The problem is not just correct Emoji input. After this operation, ASCII characters cannot be input.
The problem is that NewStringUTF cannot handle emoji code correctly. You can fix it by using NewString instead.
openjdk-jfx/modules/javafx.graphics/src/main/native-glass/mac/GlassViewDelegate.m
-----------
static jstring convertNSStringToJString(id aString, int length)
{
GET_MAIN_JENV;
jstring jStr;
if ([aString isKindOfClass:[NSAttributedString class]]) {
NSData *data = [[aString string] dataUsingEncoding:NSUTF16LittleEndianStringEncoding];
jchar *dataBytes = (jchar *)malloc(sizeof(jchar) * length);
if (dataBytes != NULL) {
[data getBytes:dataBytes length:length * 2];
jStr = (*env)->NewString(env, dataBytes, length);
free(dataBytes);
}
} else {
jStr = (*env)->NewStringUTF(env, [aString UTF8String]);
}
GLASS_CHECK_EXCEPTION(env);
return jStr;
}
-----------
The following is the source after rewriting.
-----------
static jstring convertNSStringToJString(id aString, int length)
{
GET_MAIN_JENV;
jstring jStr;
if ([aString isKindOfClass:[NSAttributedString class]]) {
NSData *data = [[aString string] dataUsingEncoding:NSUTF16LittleEndianStringEncoding];
jchar *dataBytes = (jchar *)malloc(sizeof(jchar) * length);
if (dataBytes != NULL) {
[data getBytes:dataBytes length:length * 2];
jStr = (*env)->NewString(env, dataBytes, length);
free(dataBytes);
}
} else {
jsize buflen = [aString length];
unichar buffer[buflen];
[aString getCharacters:buffer];
jStr = (*env)->NewString(env, (jchar *)buffer, buflen);
}
GLASS_CHECK_EXCEPTION(env);
return jStr;
}
-----------
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Start the test and input an emoji (ð) from InputMethod.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Emoji (surrogate pair) input from InputMethod is not garbled.
ACTUAL -
Emoji (surrogate pair) input from InputMethod is garbled.
---------- BEGIN SOURCE ----------
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.TextArea;
import javafx.scene.control.TextField;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class EmojiTextInputTest extends Application{
static Font emojiFont = Font.font("Apple Color Emoji");
@Override
public void start(Stage stage) throws Exception {
TextField textField = new TextField();
TextArea textArea = new TextArea();
WebView webView = new WebView();
textField.setFont(emojiFont);
textArea.setFont(emojiFont);
VBox root = new VBox(8, new Label("TextField"),textField, new Label("TextArea"), textArea, new Label("WebView"), webView);
Scene scene = new Scene(root, 400, 700);
stage.setScene(scene);
stage.show();
webView.getEngine().loadContent("<html><input type=text style='font-family:Apple Color Emoji'><textarea style='font-family:Apple Color Emoji'></textarea></html>");
}
public static void main(String[] args) {
Application.launch(args);
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
There is no workaround for this problem, but I proposed a fix for the Glass module.
See Description.
FREQUENCY : always
macOS Mojave 10.14.6
A DESCRIPTION OF THE PROBLEM :
The problem is not just correct Emoji input. After this operation, ASCII characters cannot be input.
The problem is that NewStringUTF cannot handle emoji code correctly. You can fix it by using NewString instead.
openjdk-jfx/modules/javafx.graphics/src/main/native-glass/mac/GlassViewDelegate.m
-----------
static jstring convertNSStringToJString(id aString, int length)
{
GET_MAIN_JENV;
jstring jStr;
if ([aString isKindOfClass:[NSAttributedString class]]) {
NSData *data = [[aString string] dataUsingEncoding:NSUTF16LittleEndianStringEncoding];
jchar *dataBytes = (jchar *)malloc(sizeof(jchar) * length);
if (dataBytes != NULL) {
[data getBytes:dataBytes length:length * 2];
jStr = (*env)->NewString(env, dataBytes, length);
free(dataBytes);
}
} else {
jStr = (*env)->NewStringUTF(env, [aString UTF8String]);
}
GLASS_CHECK_EXCEPTION(env);
return jStr;
}
-----------
The following is the source after rewriting.
-----------
static jstring convertNSStringToJString(id aString, int length)
{
GET_MAIN_JENV;
jstring jStr;
if ([aString isKindOfClass:[NSAttributedString class]]) {
NSData *data = [[aString string] dataUsingEncoding:NSUTF16LittleEndianStringEncoding];
jchar *dataBytes = (jchar *)malloc(sizeof(jchar) * length);
if (dataBytes != NULL) {
[data getBytes:dataBytes length:length * 2];
jStr = (*env)->NewString(env, dataBytes, length);
free(dataBytes);
}
} else {
jsize buflen = [aString length];
unichar buffer[buflen];
[aString getCharacters:buffer];
jStr = (*env)->NewString(env, (jchar *)buffer, buflen);
}
GLASS_CHECK_EXCEPTION(env);
return jStr;
}
-----------
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Start the test and input an emoji (ð) from InputMethod.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Emoji (surrogate pair) input from InputMethod is not garbled.
ACTUAL -
Emoji (surrogate pair) input from InputMethod is garbled.
---------- BEGIN SOURCE ----------
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.TextArea;
import javafx.scene.control.TextField;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class EmojiTextInputTest extends Application{
static Font emojiFont = Font.font("Apple Color Emoji");
@Override
public void start(Stage stage) throws Exception {
TextField textField = new TextField();
TextArea textArea = new TextArea();
WebView webView = new WebView();
textField.setFont(emojiFont);
textArea.setFont(emojiFont);
VBox root = new VBox(8, new Label("TextField"),textField, new Label("TextArea"), textArea, new Label("WebView"), webView);
Scene scene = new Scene(root, 400, 700);
stage.setScene(scene);
stage.show();
webView.getEngine().loadContent("<html><input type=text style='font-family:Apple Color Emoji'><textarea style='font-family:Apple Color Emoji'></textarea></html>");
}
public static void main(String[] args) {
Application.launch(args);
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
There is no workaround for this problem, but I proposed a fix for the Glass module.
See Description.
FREQUENCY : always
- duplicates
-
JDK-8258381 [macos] Exception when input emoji using Chinese input method
-
- Closed
-