Click here to Skip to main content
15,894,720 members

Problem Running J2me application in NetBeans

onlineQry asked:

Open original thread
dear all

I developed a J2ME application in Netbeans. It was running well last day. but now whenever i run the project It redirects the page on j2me Default form as displaying Hello! Hello Word screen rather then to display my activeform

what would be the problem in it?

(as application it should display the mainform but it displaying now the default string used by j2me as hello hello world.

package allflexisms;



import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.util.Vector;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
//import javax.wireless.messaging.MessageConnection;
//import javax.wireless.messaging.MessageListener;
//import javax.wireless.messaging.TextMessage;


/**
* @author Vikas Kaushik
*/
public class HelloMIDlet extends MIDlet implements CommandListener {

private boolean midletPaused = false;
private Display display = Display.getDisplay(this);
Form mainForm = new Form("Welecome to AllFlexi.in");
Form ActiveForm;

private Command GetSMS = new Command("Login", Command.OK, 1);
private Command backButton;
private Command exitButton = new Command("Exit Application", Command.OK, 2);

private static final String RECORD_ADDED = "N";
private static final String ORDER_SHIPPED = "N";
//UI Text Fields
TextField UNUM = new TextField("Number:", "", 12, TextField.ANY);
TextField USMS = new TextField("SMS", "", 20, TextField.PASSWORD);

StringItem ErrorVal = new StringItem("", "");

private Command exitCommand;
private Form form;
private StringItem stringItem;
private Ticker ticker;

/**
* The HelloMIDlet constructor.
*/
public HelloMIDlet()
{
mainForm.append(UNUM);
mainForm.append(USMS);
mainForm.addCommand(GetSMS);
mainForm.setCommandListener(this);
display.setCurrent(mainForm);
}

private void initialize() {
}

/**
*
*/
public void startMIDlet() {
switchDisplayable(null, getForm());
}


public void resumeMIDlet() {
}

public void switchDisplayable(Alert alert, Displayable nextDisplayable) {
Display display = getDisplay();
if (alert == null) {
display.setCurrent(nextDisplayable);
} else {
display.setCurrent(alert, nextDisplayable);
}
}

public void commandAction(Command command, Displayable displayable) {
if (command==GetSMS)
{
}
if (displayable == form)
{
if (command == exitCommand)
{
exitMIDlet();
}
}
}

public Command getExitCommand() {
if (exitCommand == null) {
exitCommand = new Command("Exit", Command.EXIT, 0);
}
return exitCommand;
}

public Form getForm() {
if (form == null)
{
form = new Form("Welcome", new Item[]{getStringItem()});
form.setTicker(getTicker());
form.addCommand(getExitCommand());
form.setCommandListener(this);
}
return form;
}

public StringItem getStringItem() {
if (stringItem == null) {
stringItem = new StringItem("Hello", "Hello, World!");
}
return stringItem;
}

public Ticker getTicker() {
if (ticker == null) {
ticker = new Ticker("");
}
return ticker;
}

public Display getDisplay() {
return Display.getDisplay(this);
}
public void exitMIDlet() {
switchDisplayable(null, null);
destroyApp(true);
notifyDestroyed();
}
public void startApp() {
if (midletPaused) {
resumeMIDlet();
} else {
initialize();
startMIDlet();
}
midletPaused = false;
}
public void pauseApp() {
midletPaused = true;
}

public void destroyApp(boolean unconditional) { }

}
Tags: Java SE, J2ME

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900