A question for all who consider themselves somewhat experienced in Java apps for mobile. Is it possible to create a Java App that can open two different user profiles, for instance if I were to turn the phone on, this app would ask for a password. Depending on the password the phone would then direct me to one of two user profiles a mast...
Hi
Am not mobile developer or j2ee developer ,
I want some open source , which satisfy my below needs ,
send alert message to mobile ,(2-way communication) ,
Looking free open source ,
Need to store all message(incoming and outgoing messsages) into Database ,
We are not ready to spend money , may be one initial setup cost ready to s...
I am trying to access the audio file from the jar,for doing that i wrote a code,like
...
try {
InputStream is =
getClass().getResourceAsStream("audio.wav");
Player player = Manager.createPlayer(is, "audio/X-wav");
p.start();
}
catch(IOException ioe) {
}
catch(MediaException me) {
}
...
but here in this snippet,what ...
Im trying to find an idea for my third year project related to mobile programming with Android or J2ME. anybody has any new idea of mobile application? or at least something that is worth to work on it for the third year project?
...
I want to set gauge object in Alert to show the progress but it is giving java.lang.IllegalArgumentException
public class AlertTest extends MIDlet implements CommandListener {
Display display;
TextBox txtbox;
Command cmd;
public void startApp() {
display=Display.getDisplay(this);
txtbox=new TextBox("Message", null, 160, 0);
...
How I can create class diagram for mobile games
...
Is there any way to do this? I found some Symbian C++ codes that could do it but nothing in J2ME. I have a J2ME certificate and don't have Symbian C++ certificate.
Thanks in advance,
Ashish.
...
Can anyone please clear my doubt regarding the query that does Android Programming has anything to do with the J2ME?
Does Android Development comes under J2ME Platform as J2ME is used basically for the Mobile Applications and Android is also the same one.
Please let me know if anybody is knowing it.
...
I have developed 2 J2ME games. I have Nokia 6300 & Sony Ericsson w910i for testing the games. Both games work very fine in Sony Ericsson but on the Nokia 6300 throws OutOfMemoryError.
I have 5 screens , New game , Highscore , settings , Help and Exit, which are all GameCanvas subclasses.
In the Menu screen I have shown all these 5 screen...
hi all
i'm going to make application on j2me
Using canvas....
I want to take textbox or textfield on my canvas ..
so plz tell me how to do this.
Thanks...
Neel
...
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
public class SlideImage extends MIDlet{
private Display display;
public void startApp(){
display = Display.getDisplay(this);
display.setCurrent(new IconsCanvas());
}
public void pauseApp(){}
public void destroyApp(boolean unconditional){
not...
How do i make .class files, that i created using java, run on an s60 phone
...
Ho do you navigate from a game canvas to a form in Java ME when you require a user to insert his or her username and password
...
Hello,
I wrote a simple j2me app for order tracking using Netbeans 6.8. The app allows the user to insert a new order, and search for orders by their order id. The app consists of just a single Midlet and the code is shown below. I have also put up the same code at http://pastie.org/1044069 . Im getting an error "Error:java.lang.Illega...
I have installed Netbeans 6.9 Java SE version. I have then added the plugin 'Mobility'.
Now although I see the wizard for creating Java ME applications, it stops at the following stage:
http://i.imgur.com/WGEtl.png
It says that there is no compatible platform for Java ME installed. And in fact, there is no "C:\Program Files\NetBeans 6....
Hello All...
I have just downloaded the Samsung SDK 1.2 for Java Development.
Now, it's pure based J2ME architecture, so I have a requirement to store some files inside the memory for my application usage.
That file can have a .csv extension, so for that I have tried JSR 75's FileConnection class with following piece of code :
try {
...
Hi frnds
I wann develop J2ME application ..
in this application i've to use XML parsing ..
so plz tell me how i can do this...
currently i'm using ECLIPSE IDE....
on Internet I got lots of source code but...there is conman problem "java.lang.NoClassDefFoundError: org/kxml/parser/XmlParser" .. so I'm not able to solve this problem....../...
I have a REST API written in PHP located on Apache server. It takes as a parameter a file (15KB). When I call this API from J2ME application it does work fine. Moreover when I wrote a API client in C# it worked too fine.
But now I have this second server with Lighttpd. I copied my API to this server and called it from C# app and it wor...
Hi,
Is there a universal way we can retrieve CellID in J2ME or what's the usual standard practice to get those information?
Any reference and tips are very much appreciated.
Cheers,
Mickey
...
We are developing a J2ME application and sometimes we face constraints while working with the default lcdui library. Whenever we want some extra in the UI, the only option is to work with canvas which is not so easy. Now we are thinking to use LWUIT as UI library instead of ludui but having some question before starting -
Is LWUIT matu...