有没有办法将日食项目编译或移植到 MIDlet 中?

我正在为我的诺基亚制作一个小的测试拍摄,我已经为它制作了内容。有没有办法将Eclipse项目编译或移植到Midlet中,如果有,我该怎么做?


这只是我家里的诺基亚s40手机,我尝试下载S40 SDK,但我得到了 Mail.ru 广告软件,我不得不使用系统还原来摆脱它。


//this is just a section of the game's code. there's a lot more.

//variables

    double counter = 0;

    double thing = 0;

    double thing2 = 0;

    double epic = 1;

    double epic2 = 1;

    double phase = 0;

    double div = 60/1000000000;

//the attack

    private void attack1()

    {

        //bullet spread

        float n = 4f;

        if(counter % 1200 == 0 && counter > 10000)

        {

            //circles

            for(float i = 0; i<360; i+= 360/5)

            {

                for(float j = -n; j < n+1; j++)

                 c.addBullet(new Bullet(WIDTH/2, 60, (1200/1.3)*counter+i+5*j, 0.03+0.003*((double)n-Math.abs(j)), 13, 13, 13, 13, 0, 0, this));

            }

        }


慕侠2389804
浏览 101回答 1
1回答

慕的地6264312

如果您没有使用诺基亚的任何特定内容,则可以使用Java ME SDK进行开发。我个人的看法是2.5.2版。您可以在&nbsp;https://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javame-419430.html#sun_java_wireless_toolkit-2.5.2_01b-oth-JPR&nbsp;下载
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java