File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Java Micro Edition and the fly likes Installing Simple Midlet into nokia phone Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Mobile » Java Micro Edition
Reply Bookmark "Installing Simple Midlet into nokia phone" Watch "Installing Simple Midlet into nokia phone" New topic
Author

Installing Simple Midlet into nokia phone

Sameera Abeysekara Abeysekara
Greenhorn

Joined: Apr 10, 2007
Posts: 19
I try to install simple application in to nokia 6630.
installation was succeed.but when i try to open that application couldn't be open.

Please help me to solve this problem

thanks
Sameera
Deepan Devadasan
Ranch Hand

Joined: Jan 25, 2007
Posts: 226
Sameera..

Can you post your code..

So that we could help you out


Theepan Thevathasan
SCJP 1.4, SCWCD 1.4, SCMAD 1.0 SCBCD 1.3, MCP(.Net Frm 2.0 App Dev Fdn)
Sameera Abeysekara Abeysekara
Greenhorn

Joined: Apr 10, 2007
Posts: 19
This is my source code

import javax.microedition.media.*;

import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;

public class PianoMIDlet
extends MIDlet {
public void startApp() {
Displayable d = new PianoCanvas();

d.addCommand(new Command("Exit", Command.EXIT, 0));
d.setCommandListener(new CommandListener() {
public void commandAction(Command c, Displayable s) {
notifyDestroyed();
}
});

Display.getDisplay(this).setCurrent(d);
}

public void pauseApp() {}

public void destroyApp(boolean unconditional) {}
}

class PianoCanvas extends Canvas {
private static final int[] kNoteX = {
0, 11, 16, 29, 32, 48, 59, 64, 76, 80, 93, 96
};

private static final int[] kNoteWidth = {
16, 8, 16, 8, 16, 16, 8, 16, 8, 16, 8, 16
};

private static final int[] kNoteHeight = {
96, 64, 96, 64, 96, 96, 64, 96, 64, 96, 64, 96
};

private static final boolean[] kBlack = {
false, true, false, true, false,
false, true, false, true, false, true, false
};

private int mMiddleCX, mMiddleCY;

private int mCurrentNote;

public PianoCanvas() {
int w = getWidth();
int h = getHeight();

int fullWidth = kNoteWidth[0] * 8;
mMiddleCX = (w - fullWidth) / 2;
mMiddleCY = (h - kNoteHeight[0]) / 2;

mCurrentNote = 60;
}

public void paint(Graphics g) {
int w = getWidth();
int h = getHeight();

g.setColor(0xffffff);
g.fillRect(0, 0, w, h);
g.setColor(0x000000);

for (int i = 60; i <= 72; i++)
drawNote(g, i);

drawSelection(g, mCurrentNote);
}

private void drawNote(Graphics g, int note) {
int n = note % 12;
int octaveOffset = ((note - n) / 12 - 5) * 7 * kNoteWidth[0];
int x = mMiddleCX + octaveOffset + kNoteX[n];
int y = mMiddleCY;
int w = kNoteWidth[n];
int h = kNoteHeight[n];

if (isBlack(n))
g.fillRect(x, y, w, h);
else
g.drawRect(x, y, w, h);
}

private void drawSelection(Graphics g, int note) {
int n = note % 12;
int octaveOffset = ((note - n) / 12 - 5) * 7 * kNoteWidth[0];
int x = mMiddleCX + octaveOffset + kNoteX[n];
int y = mMiddleCY;
int w = kNoteWidth[n];
int h = kNoteHeight[n];

int sw = 6;
int sx = x + (w - sw) / 2;
int sy = y + h - 8;
g.setColor(0xffffff);
g.fillRect(sx, sy, sw, sw);
g.setColor(0x000000);
g.drawRect(sx, sy, sw, sw);
g.drawLine(sx, sy, sx + sw, sy + sw);
g.drawLine(sx, sy + sw, sx + sw, sy);
}

private boolean isBlack(int note) {
return kBlack[note];
}

public void keyPressed(int keyCode) {
int action = getGameAction(keyCode);
switch (action) {
case LEFT:
mCurrentNote--;
if (mCurrentNote < 60)
mCurrentNote = 60;
repaint();
break;
case RIGHT:
mCurrentNote++;
if (mCurrentNote > 72)
mCurrentNote = 72;
repaint();
break;
case FIRE:
try { Manager.playTone(mCurrentNote, 1000, 100); }
catch (MediaException me) {}
break;
default:
break;
}
}
}


Thanks
Sameera
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Installing Simple Midlet into nokia phone
 
Similar Threads
how to Install Jar over internet / (http)
Connecting J2ME to J2EE???
Application Error
Open a word file from a midlet
Location Api