Comment on Tutorial - Getting Started with J2ME By Emiley J.
Comment Added by : ganesh
Comment Added at : 2012-10-17 10:34:00
Comment on Tutorial : Getting Started with J2ME By Emiley J.
i build j2me application for reading text file.......
it runs on emulator but when i deployed it on device it does not
work......
why this is ....happening.....
my mobile is Nokia 3110C
code...is......
import java.io.*;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class ReadFile extends MIDlet implements CommandListener{
private Display display;
private Form form;
private Command read, exit;
private Alert alert;
public ReadFile(){
display = Display.getDisplay(this);
read = new Command("Read", Command.SCREEN, 1);
exit = new Command("Exit", Command.EXIT, 1);
form = new Form("Read File");
form.addCommand(exit);
form.addCommand(read);
form.setCommandListener(this);
}
public void startApp(){
display.setCurrent(form);
}
public void pauseApp(){}
public void destroyApp(boolean unconditional){
notifyDestroyed();
}
public void commandAction(Command c, Displayable s){
String label = c.getLabel();
if (label.equals("Read")){
String string = null;
try {
string = file();
} catch (UnsupportedEncodingException ex) {
ex.printStackTrace();
}
if (string != null){
alert = new Alert("Reading", string, null, null);
alert.setTimeout(Alert.FOREVER);
display.setCurrent(alert, form);
}
} else if (label.equals("Exit")){
destroyApp(false);
}
}
private String file() throws UnsupportedEncodingException{
InputStream is = getClass().getResourceAsStream("/data/aardvark.txt");
InputStreamReader isr=new InputStreamReader(is,"Unicode");
StringBuffer sb = new StringBuffer();
try{
int chars, i = 0;
while ((chars = isr.read()) != -1){
sb.append((char) chars);
}
return sb.toString();
}catch (Exception e){}
return null;
}
}
View Tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Program using concept of byte long short and int in java
Update contents of a file within a jar file
Tomcat and httpd configured in port 8080 and 80
Count number of vowels, consonants and digits in a String in Java
Student marks calculation program in Java
Calculate gross salary in Java
Calculate average sale of the week in Java
Vector in Java - Sample Program
MultiLevel Inheritance sample in Java
Archived Comments
1. thanks Mr Ramlak
i m using samsung j600 mob
View Tutorial By: yash at 2008-05-13 15:05:49
2. how to execute all these five programms tell me st
View Tutorial By: shweta at 2008-09-24 07:35:22
3. Can you send me the file please?
[email protected]
View Tutorial By: laue at 2014-11-18 20:35:02
4. I think it is the best article for freshers.thanks
View Tutorial By: srikanth at 2010-11-01 23:27:53
5. could anyone run this program on Netbean? If there
View Tutorial By: Wei Long at 2008-06-16 19:23:48
6. Thx for the explanation, I understand what recursi
View Tutorial By: Tina at 2008-12-15 16:39:27
7. i get this error too but i dont start the mysql se
View Tutorial By: Head at 2009-02-27 00:47:43
8. its simple and easy... good example.
View Tutorial By: madhu kk at 2012-12-05 07:56:04
9. i don't know anything about computer..........
View Tutorial By: Ami weds Pappu....... at 2013-02-14 04:00:11
10. I am facing the same problem but org-netbeans-modu
View Tutorial By: Anonymous at 2009-05-08 07:59:09