imode程序中900系列机型的判断

    技术2022-05-11  132

    imode程序中900系列机型的判断

    平台名字:D900iF900iN900iP900iSH900iX900i           // emulatorD901iF901iN901iP901iSH901iX901i           // emulator

    判断方法: 

     String pf = System.getProperty("microedition.platform");

     String Platform = pf;

     boolean is_emu_doja35 = (pf.compareTo("X900i") == 0); boolean is_emu_doja40 = (pf.compareTo("DOJA_INET_CLIENT") == 0);

     boolean bEmurator = (is_emu_doja35 || is_emu_doja40); boolean bIsN900 = false; boolean bIsP900 = false;

     if (Platform.indexOf("N900") != -1) {  bIsN900 = true; }

     if (Platform.indexOf("P900") != -1) {  bIsP900 = true; }


    最新回复(0)