Уведомление Android не обрабатывает специальные символы - PullRequest
0 голосов
/ 24 сентября 2018

Я использую Службу сообщений Firebase для отправки уведомлений, но у меня проблема с отображением специальных выделенных символов на устройствах и эмуляторе.

Вот как я отправляю данные:

public static String sendPushNotification() throws IOException {
    String result = "";
    URL url = new URL(API_URL_FCM);
    HttpURLConnection conn = (HttpURLConnection) url.openConnection();

    conn.setUseCaches(false);
    conn.setDoInput(true);
    conn.setDoOutput(true);

    conn.setRequestMethod("POST");
    conn.setRequestProperty("Authorization", "key=" + AUTH_KEY_FCM);
    conn.setRequestProperty("Content-Type", "application/json;charset=UTF-8");

    JSONObject json = new JSONObject();


    json.put("to", "fT3MxvEyzs8:APA91bH-J3Tj.....");

    JSONObject info = new JSONObject();
    info.put("title", URLEncoder.encode("éééé","UTF-8")); // Notification title
    info.put("body", URLEncoder.encode("ééé","UTF-8"));
    json.put("notification", info);


    JSONObject data = new JSONObject();
    data.put("title", URLEncoder.encode("ééé","UTF-8")); // Notification title
    data.put("body", URLEncoder.encode("ééé","UTF-8"));
    json.put("data", data);

    try {
        OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
        wr.write(json.toString());
        wr.flush();

        BufferedReader br = new BufferedReader(new InputStreamReader((conn.getInputStream())));

        String output;
        System.out.println("Sending Notification .... \n");
        while ((output = br.readLine()) != null) {
            System.out.println(output);
        }
        result = "OKKKKK";
    } catch (Exception e) {
        e.printStackTrace();
        result = "NNNOOOOKKKKK";
    }
    System.out.println("FCM Notification is sent successfully");

    return result;
}

и вот как я обрабатываю уведомление в приложении:

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {

    Log.i("fcm", "received notification");
    Log.i("fcm", "Message received");
    // Not getting messages here? See why this may be: https://firebase.google.com/support/faq/#fcm-android-background
    Log.i("fcm", "From: " + remoteMessage.getFrom());
    // Check if message contains a data payload.
    if (remoteMessage.getData().size() > 0) {
        Log.i("fcm", "Message data payload: " + remoteMessage.getData());
    }
    // Check if message contains a notification payload.
    if (remoteMessage.getNotification() != null) {
        Log.i("fcm", "Message notification: " + remoteMessage.getNotification());
    }

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        if (remoteMessage.getNotification() != null && remoteMessage.getNotification().getTitle() != null && remoteMessage.getNotification().getBody() != null) {
            try {
                sendNotification(URLDecoder.decode(remoteMessage.getNotification().getTitle(),"UTF-8"), URLDecoder.decode(remoteMessage.getNotification().getBody(),"UTF-8"));
            } catch (UnsupportedEncodingException e) {
                e.printStackTrace();
            }
        }
    } else {
        try {
            sendNotification(URLDecoder.decode(remoteMessage.getData().get("title"),"UTF-8"), URLDecoder.decode(remoteMessage.getData().get("body"),"UTF-8"));
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
    }
}

Когда я получаю уведомление, оно выглядит следующим образом enter image description here

Что такоелучший способ кодировать и декодировать уведомления для правильного отображения на устройствах.

1 Ответ

0 голосов
/ 24 сентября 2018

не используйте URLEncoder ... потому что это то, что кодирует вывод.

настройка UTF-8 требуется только при непосредственном использовании API -

просто убедитесь, чточто файлы .java имеют кодировку UTF-8.

...