ida pro 7.0 無法顯示中文的問題解決方法

1 問題

ida pro 7.0 反編譯 Android so 庫後無法顯示中文

2 解決方法

定位到 ida安裝目錄\cfg\ida.cfg,將下面2個地方的註釋去掉
注意CULTURE="all"; 結尾的分號要去掉:

// The default 'culture' to use. Using -DCULTURE="foo" is a convenient way of
// specifying the culture for just one input file.
// CULTURE="Latin_1_Supplement"; // letters within range u+0080..u+00ff
// CULTURE="Cyrillic"; // letters within ranges u+0400..u+04FF, u+2DE0..u+2DFF, u+A640..u+A69F, u+1C80..u+1C8F, u+0500..u+052F
// CULTURE="Latin"; // all codepoints in clt_Latin.clt file
CULTURE="all"       //這裏的註釋去掉,並且注意這句後面結尾的;要去掉

// The default 1-byte encoding to use
// ENCODING="UTF-8"
// ENCODING="windows-1252"
// the following characters are allowed in user-defined names:

NameChars =
        "$?@"           // asm specific character
        "_0123456789"
        "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        "abcdefghijklmnopqrstuvwxyz",
        // This would enable common Chinese characters in identifiers:
        Culture_CJK_Unified_Ideographs,    //這裏的註釋也要去掉
        CURRENT_CULTURE;

在這裏插入圖片描述

3 轉載請註明來自“梧桐那時雨”的博客:https://blog.csdn.net/fuchaosz/article/details/104827280

Tips:
如果覺得這篇博客對你有幫助或者喜歡博主的寫作風格,就關注一下博主或者給博主留個言唄,鼓勵博主創作出更多優質博客,Thank you.

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章