J2ME applications

Hi Everyone,
Where can I get free downloads of pure J2ME applications?
I found few free application downloads developed in Java but not specifically mentioned that they have used J2ME API by Sun. They may have used vendor specific Java APIs. I want apps which are purely developed using javax.microedition.*.
Please provide me few links, it will be a great help to me.
Actually I have developed one application, but its GUI is not much attractive. So I want to see the various possibilities with J2ME, what can be achieved by just using Sun's J2ME i.e. javax.microedition [and NOT using vendor specific Java API]
Regards

Thanks db, I'll try Canvas/CustomItem. I hope there is material available about this on the Sun's site.
I knew about of LWUIT and J2MEPolish. I think LWUIT provides good GUI options but applications are slower. Also, It may not look proper and work good on wide range of devices, I want to target large number of devices, so I dropped LWUIT. I may be wrong, so please correct me if I am doing any mistake about knowing LWUIT.
About Polish, Is it cross-platform? Is there any difference in installing Polish midlets and installing pure Java ME midlets? I mean do I need to provide additional libraries along with the Project JAR and JAD file? Is it possible to convert Java ME midlet to Polish midlet? Thanks and Regards.

Similar Messages

  • How to send sms from gsm modem(AT commands) to j2me application(not inbox)

    hi
    i want to send sms from gsm modem to a j2me application, for this to happen i have to send sms to a specific port in which j2me application is running.when i m trying to send sms from modem it doesnt go to application it goes to inbox.
    is it related to udh settings if yes then how do i set port no in settings?if no what are the other ways.

    Hi Vignesh,
    Might be you can call ActiveX or DLL objects of the software installed for modem from LabVIEW, if it is unblocked.
    Have a  look on the link > http://zone.ni.com/devzone/cda/tut/p/id/2983
    CLA 2014
    CCVID 2014

  • How to get the Mobile information by using J2ME application

    hi all,
    I am lakshman.I am developing an application in j2me,I want my program compatible to all mobile devices.
    I want to know properties and the device information with the help of a j2me application.I got the information with the help of System.getProperty(String).I found some of the information like sms,videocapture,and some of the values and the variables ... in the following
    platform...null
    encoding...ISO-8859-1
    configuration...CLDC-1.0
    profile...MIDP-2.0
    locale...null
    fileconnection...1.0
    comport...null
    hostname...iwmc-07
    sms...null
    smartcard...null
    location version...null
    sip version...null
    m3gversion...null
    mms...null
    videocapture...false
    videoencoding...null
    snapshotencoding...encoding=png encoding=jpeg encoding=gif encoding=bmp
    audioencoding...null
    supaudcap...false
    suprecod...false
    supmixing...false
    mediaversion...1.1
    streamcont...null
    I want to know these are the only variables or is there are lot...
    Now my question is I want to get the information of the service provider and also the present location that the mobile was present.I think there was some method to get that ...I want to get what firmware it was using .
    Can anybody tell me that way and also the package to get the information
    thanks in advance
    lakshman

    hi all,
    I am lakshman,I found the answer for my question,By using the Location API(jsr179).It was not include in the WTK2.2.for that i have downloaded the WTK2.3 then i have implemented the location api in the application and it was working.
    And I have the following warning...
    Warning: To avoid potential deadlock, operations that may block, such as
    networking, should be performed in a different thread than the
    commandAction() handler.
    I am running the application from my Emulator(by using the default color phone).I have to check that in the device.
    Can any body please give me the way to fix that,i want to test my application from my emulator is that is possible if possible ...how?.what is the procedure to implement..
    thanks in advance

  • Opening a web page through my J2ME application.

    Hi All,
    I am creating a j2me application, that has to connect to the server online and open a page on that server, and then upload a file at a particular location in that server.
    I am using Nokia 6681. I was exploring it, but since I have very less time, I am posting a query here also.
    If this is possible (opening a connection with a server - I have the IP address of the server and also the path to that page), and display that page on my cell phone from within the j2me application.
    Is this somehow related to JSR-172 (Which is not supported on Nokia 6681).
    If this is not possible this way, Is there any way I can upload that file to the server from within the application.
    Urgent help is required.
    Thanking you in anticipation
    Ashish

    Just compile and run the testVisit program as follows:
    java testVisit http://www.yahoo.com
    testVisit.java
    ==========
    import java.net.*;
    import java.io.*;
    public class testVisit {
       public static void main(String[] args) {
          try {
             URL url = new URL(args[0]);
             URLConnection connection = url.openConnection();
             connection.setRequestProperty("Referer", args[0]);
             connection.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0");
             BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
             String Line;
             while ((Line = in.readLine()) != null) System.out.println(Line);
             in.close();
          } catch (Throwable e) {e.printStackTrace();}
    };o)
    V.V.

  • Real J2ME applications (2)

    I am looking for real j2me applications.
    I have already posted this question at:
    http://forum.java.sun.com/wireless/thread.jsp?forum=76&thread=422879
    However, most of the replies gave examples of games or tutorial examples.
    But I was looking for j2me applications implemented by companies for their consumers, such as amazon.com.
    Amazon have a mobile app, but its implemented in WAP.
    So are there any companies which have implemenetd j2me apps.
    regards

    You could find tonns of real j2me applications if you type the following keywords to any search engine: midlet download free/buy j2me.
    Here is a real game application: www.kisember.com/test/rescuedemo.jad

  • Check if mobile phone got turned off using j2me application

    hello
    Is there any way to know if the mobile phone got turned off from my j2me application.
    this is really urgent please help me out.

    alyaitani wrote:
    hello
    Is there any way to know if the mobile phone got turned off from my j2me application.No. Why do you think you need to detect this?
    this is really urgent please help me out.[http://catb.org/~esr/faqs/smart-questions.html#urgent]
    db

  • How to Create trial version of my j2me application??

    Hey..
    could please anyone write a short note on safest way of creating a trial version of my j2me application?? like i want to limit the number of tries.. like say 25 tries..
    are there any applications that do this.. or could u suggest good coding methods.. ??
    thanks a lot!

    rakesh.pachava wrote:
    Hi,
    You can use the Record Store implementation to count the number of tries.
    But if once the app is uninstalled then the record store is also lost.
    If you want you can use the File Connection API to write to file system.
    This asks for user permissions.
    Regards,
    Rakesh pachawa.yes.. this is the method im using.. & i dont want to access the File System directly.. cause i want maximum compatibility. I don't mind re-installing the application causing the trial to be re-started.. thats fine.
    but i don't want someone to be able to crack the class files by taking out the code which checks the Record Store..
    how are j2me applications normally cracked pls??

  • Can a J2ME application download a mobile content to the handset?

    Hi, I'm a newbie here.
    I've a question about whether the J2ME application can be implemented to trigger a Http download via OTA to download a mobile content. let's say using the J2ME application, the user can actually download a MP3 by selecting the option on the application screen, from the content server to the user handset's folder.
    I know that another alternative way is to use platform request to trigger the handset's wap browser to do the downloading, however I'd like the user to do all the things with only one J2ME application.
    Please help, any information is very much appreciated.

    Hi JunJie
    I'm also new so don't expect any code snippets from me. But from what I've read both on the forums here and elsewhere --
    Yes, your midlet should be able to read in a mp3 file from a web server, the best wy to find out is just to TRY but your MIDlet will be able to access the phone's file system only if it's digitally signed. To the best of my knowledge, obtaining a digital signature would cost you at least US$ 199.
    rms has a limit of 200 kB per application, so you can't save it there either.
    One way out might be to download the file and then transfer it to a listening PC application via bluetooth.
    Don't know whether you would get an 'Out of memory' error if the mp3 is fairly large.
    Wish you luck, Darryl

  • Xml Push Parsing in J2Me applications

    Hi all,
    I would like to use Push parser in j2me application.Can u please tell me how can i use sax parser in mobile application.Because when i included "jaxp-api.jar" in mobile application,it gives an error "FactoryFinder class not found".. So please tell me how can i overcome this error or any other push parser available for J2me applications.
    Thanks
    Regards
    Sourab

    Please review this article.
    http://developers.sun.com/techtopics/mobility/midp/articles/parsingxml/
    There is a link to a push parser mid way through the article. If you search "push parser j2me" you should be able to find others.
    If you still are not able to find a push parser you could create your own. How complex is the xml you need to parse?
    I created an example called y!p! some time ago that uses a push parser to parse Yahoo's Image Search web service. (http://developer.yahoo.com/search/image/V1/imageSearch.html)
    You can download the example src code. For a more complex example you could look at w!k!. It uses a push parser to parse html wikipedia articles.
    w!k! push parser src:
    http://hostj2me.cliqcafe.com/www/forumtopicview.html?fid=58&categoryId=36&fpn=0
    w!k! src code:
    http://www.hostj2me.com/appdetails.html?id=1569

  • How to Deploy J2ME applications with data in RMS?

    Hello everyone,
    I am designing a J2ME application, a simple "Who wants to be a millionaire game". It stores questions and answers from a rms datastore. I want to to how can I deploy this application with questions and answers in the recordstore. Each time I run the emulator, the data stored previously gets deleted. Is it possible to attach the rms recordstore along with the .jar or .jad files? If so how can I do it. Please help.
    Thank you all in advance.

    Thank you Sypress.. When I install it the code works fine. But I wanted to include data with the application. I think I found a way way. I added the data in a text file and while starting the application I inserted data from the file into the recordstore.

  • Series 40 j2me Application(Please Reply me)

    Hi.
    I am Jignesh
    i am developing one series 40 j2me application. i want know will it work on all the series 40 mobile device.? i am developing that application MIDP2.0 with file connection API.!!
    Please let me know as soon as possible
    Thanx

    Well, the only way to really know if it will work is to test it on ALL series 40 phones ;)
    But, if you make sure that you keep to the java specs of the series 40 phones (I don't know if they all have MIDP 2.0), I think you can be 95% sure that it will run on all phones.

  • Getting cell info via a J2ME application

    Hi All,
    I want to get the cell info i.e. Location String of the BTS, that gets displayed on the mobile phone. Is there any method by which I can get this information in to my J2ME application.
    Regards,
    Ashish

    Just a guess, as I didn't try it yet. But I'm interested on the subject myself, and I think you need the Location API. Try googling for "j2me location api" or take a look at this:
    http://www.lbszone.com/index2.php?option=com_content&do_pdf=1&id=176

  • Can we write an J2ME application to block

    Hi
    can we write an j2me application to block
    calls from certain numbers,stored in memory of device
    if so how ?
    please help me
    regards
    Rameshwari

    No, that is not possible.

  • How to install J2ME application on Nokia 6600

    Can you help me in How to install J2ME application on Nokia 6600.Is it enough to build the application using J2ME wireless toolkit or we need any other Nokia SDK for it.

    hi, it is not very difficult. I have done it this way :
    1) i have set the following mime type in my web server (JRun 4):
    text/vnd.sun.j2me.app-descriptor for the jad extension
    application/java-archive for the jar extension
    (in Jrun 4 i added them in the mime.types file in the lib directory)
    2) i have published a wml page like this :
    <?xml version="1.0"?>
    <!DOCTYPE wml PUBLIC "-//PHONE.COM//DTD WML 1.3//EN" "http://www.phone.com/dtd/wml13.dtd">
    <!-- WML file -->
    <wml>
    <card id="main" title="App Title">
    <p>
    </p>
    <p><b>
    <a title="Download App" href="http://xxx.xxx.xxx.xxx/App.jad "> Download </a>
    </b></p>
    </card>
    </wml>
    to download the jad file
    3) then my AMS has started and i could download the application, which runs successfully.
    Anyhow I had to configure 1 wap profile and 1 java profile in my M50 according to my provider configuration, and I bet you had to do so if you have not yet done it. I have successfully used a gprs configuration.
    I am in Italy an so I have the italian provider's configurations. If this may be usefull to you i may send it.
    Feel free to ask.
    Hope this helps.

  • VM Error installing J2ME Application

    i am creating a J2ME application that make a HttpConnection.
    I made a lot of tests in WTK and it worked fine, but when I tryi to deploy it to a iden phone Motorola i85s,
    and the application is being installed, occours a VM Error.
    I connected the cel phone by hyperterminal, to debug, and the following message was shown when the error appeared:
    Fatal error: Unresolvable reference encountered in class services/a
    I continued trying to resolve the problem and I perceived that the following line is the reason of the error:
    OutputStream os = c.openOutputStream();
    c is a HttpConnection object.
    When i remove this line of the code, the deploy works fine... but my application needs this line to work....
    Have anyone an idea about what could be happening?
    Thanks a lot.

    Hi,
    Check with your device manual if your device implementation supports HttpConnection.

  • How to install new font file in the device when deploying J2ME application?

    i would like to know how to install the new font file in the device when deploying J2ME application, side-by-side.
    Is that possible to seamlessly install the new font file with the application .jar package.
    thnx.

    No, there is no way of installing new fonts.

Maybe you are looking for

  • Personnel Change Requests option missing in MSS

    Hi everyone.  I hope you can help. In Manager Self-Service, under the "Team" workset, there should be an iview for Personnel Change Requests: http://help.sap.com/saphelp_erp2005vp/helpdata/en/54/957e40ec66ce62e10000000a155106/frameset.htm However, no

  • Yosemite Mail displays image attachments as question marks if attachments also contain a pdf

    We have 11 macs running Yosemity in our company and I have the following problem with Mail since upgrading. If an email is created in Mail and both images (jpg) and pdf's are attached to that mail, the recipient will see the images displayed as quest

  • Anybody generally familiar with laptop monitor sync ranges?

    After having been happy with arch linux on my desktop for almost 12 hours, I'm now configuring it for my laptop. I'm now working on my XFree86 configuration, and I've hit a snafu. I have no idea what the horizontal & vertical sync ranges ought to be.

  • Itunes HD purchased movies

    Not having considered things, and getting carried away in the moment, i purchased 5 series of a popular tv show on the Apple Store in HD format. I have an Apple TV, and a 500GB iMac. So the Apple TV sync'd with the iMac, and now i have 160GB (100 odd

  • Errors 1602 and 1604 trying to update from 1.1.4 to 2.0!!!

    Hi all. So I have two iPod Touch devices in my home. I purchased and downloaded the 2.0 update this morning. It got halfway through the update and then died, leaving the iPod in recovery mode where the display shows the sync cable and the iTunes icon