Mobile Phone Application

HI All, Thanks for reading!
I am looking to create an application for my mobile, similar to HANDY apps (to collate info, etc)...
It would be basically something to help me keep record of gym work...
question is, how would i approach this - what would be the best tools to use?
Appreciate ANY help...
Danny

short answer:J2ME
longest answer (I can thing write now): basically this is the package you have to use when developing applications for mobile, pda's etc. There is not much to say about it all, download it and use it, try finding an emulator, you should find one as well for free.

Similar Messages

  • Replacing the Tungsten W Mobile Phone App

    Just got a Palm Tungsten W and it does what is is billed to do as well as eliminate carrying both a PDA and a cell phone.
    However, the Mobile Phone application leaves a bit to be desired and thus my question,
    Can a fully functional mobile phone application be written and tested using the latest J2ME components or should I just use the "C" support provided by Palm?

    maybe c is a better choice..
    it depends on what kind of aplication you're going to develop...
    but it'll be more effecently in speed than java app...
    ...but your application will run only on your palm!! =)

  • 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

  • Send short message from Java application on mobile phone to server; http

    Hello!
    My question is: can I send short message from Java application on mobile phone to server - with the use of SMS (WMA) or http connection?
    I found this topic http://forums.sun.com/thread.jspa?threadID=5405431 about: "how to send data from midlet to servlet using doPost method".
    There is also such topic http://forums.sun.com/thread.jspa?threadID=5408046&tstart=0 about: "CLDC and MIDP - sending SMS to server -> Wireless Messaging API (WMA)".
    Please, kindly help me.
    Code from the topic mentioned above, edited by me so that it can be read easily:
    //http://forums.sun.com/thread.jspa?threadID=5405431
    //CLDC and MIDP - Re: how to send data from midlet to servlet using doPost method
    I want to know how to pass the values .
    for examples : this is what i wrote for doGet
    String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="+loggedInUserId"&svComp="saveCompHex;
    userId and svComp has the data which is very long so i wanted to use doPost.
    Now i dont know how to do it.
    This is what i have done in doGet (midlet)
    public void saveCompanyProfile(String saveComp,int flag,String blankFieldNm)
         System.out.println("flag===" flag);
         if (flag==1)
              displayAlert("Company Profile Edit",blankFieldNm+" field cannot be blank.",AlertType.ERROR, edCmpRecForm, true);
         else
              String saveCompHex = helper.encodeHexString(saveComp);
              // String saveCompHex =saveComp;
              HttpConnection httpConn = null;
              serverSettings setting = new serverSettings();
              System.out.println("saveCompHex===" saveCompHex);
              String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="loggedInUserId"&svComp="saveCompHex;
              System.out.println("url of save company profile:: "+url);
              InputStream is = null;
              OutputStream os = null;
              try {
                   // Open an HTTP Connection object
                   httpConn = (HttpConnection) Connector.open(url);
                   System.out.println("urlMidlet1 save edited company data===::" url.length());
                   // Setup HTTP Request
                   httpConn.setRequestMethod(HttpConnection.POST);
                   httpConn.setRequestProperty("User-Agent","Profile/MIDP-1.0 Confirguration/CLDC-1.0");
                   System.out.println("urlMidlet2===" url);
                   int respCode = httpConn.getResponseCode();
                   System.out.println("respCode edit company profile=====" respCode);
                   if (respCode == httpConn.HTTP_OK)
                        StringBuffer sb = new StringBuffer();
                        os = httpConn.openOutputStream();
                        is = httpConn.openDataInputStream();
                        int chr;
                        while ((chr = is.read()) != -1)
                             sb.append((char) chr);
                        String sResultSvCompanyProfile= sb.toString();
                        System.out.println("+++++++++++++Company sResult+++++++++++++==="sResultSvCompanyProfile);
                        if (resultViewCompanyProfile.trim().equals(""))
                             System.out.println("++++++++++++++If++++++++++++++SaveCompanyProfile===");
                             displayAlert("Login Incorrect","Username and Password incorrect", AlertType.ERROR, mainForm, true);
                        else
                             System.out.println("++++++++++++++Else++++++++++++++SaveCompanyProfile===");
                             //companyProfile();
                             displayAlert1("Information","Company Profile edited successfully", AlertType.INFO, profileMenuScreen, true);
                   else
                        System.out.println("Error in opening HTTP Connection. Error#" respCode);
                        //the line below divided into two lines because it was too long
                        displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                        AlertType.ERROR, mainForm, false);
              catch(IOException e)
                   e.getMessage();
              finally {
                   if(is!= null)
                        try
                             is.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(os != null)
                        try
                             os.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(httpConn != null)
                        try
                             httpConn.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
              } //end finally
         } //end else (?)
    } //end savecompany

    hi,
    SMS API(WMA) is an optional package. It is not a MIDP1.0 or MIDP2.0 api's.
    There are phones which has WMA api with MIDP1.0 support .... Nokia 3650
    Seimens has some phone with their own api's to send sms.Check out seimens site for more info
    BTW, What do you mean buy sending SMS to Server????
    If you want to send message to server you can do it with Http.
    HTH
    phani

  • How can we implement a j2me application on mobile phone

    Hello to All
    I am working on j2me and made a application that is online ticket booking for cinema hall. it is running on j2me wireless toolkit . Now i want to run this application on mobile. and how can be access this application by every the user who have java enabled mobile phone.i want to know that it may be access through internet suppose se have upload this application on our server.
    Thanks in advance
    Mukund

    I have been having problems in implementing a simple application that fetches information from a server to a mobile phone, then using OTA midlet capabilities.
    Have you got any code that you have tested on the device rather then on the emulator only?
    All the samples i have used from books and online sources didnt work with my server.
    The midlet simply asks for connection and then it gets stuck without displaying anything.
    Please gimme some hints :)

  • How to install j2me applications into a mobile phone.

    I would like people to be able to install my j2me app on their mobile phones, is it possible to host the files online, and then anyone with a mobile simply goes to my web address using their internet browser on the phone, and they'll be able to download nd install my application relatively easily?
    Thanks

    {color:#000080}Google j2me OTA
    Visit http://www.GetJar.com
    db{color}

  • Mobile phone SMS reader application in LabVIEW

    Dear All,
                I would like to develop mobile phone SMS reader/Writer in LabVIEW. This application finally i would like to use for system automation.  Any one have idea how i can develop such application
    --Vishnu

    there are two ways to implement it.
    Purchase a GSM modem and interface it with LabVIEW thourgh serial communication. Once you decide on specific modem then we can help you further with actual implemetnation.
    you can use internet based SMS gateways which will actually deliver the SMS. most of these gateways will send SMS when you send  an email to their id. the format of mail vary from gateway to gatway. However as per latest rules from TRAI, SMS from SMS gateway will not be delivered if intended receiver has subscribed "do not call"
    Tushar Jambhekar
    [email protected]
    Jambhekar Automation Solutions
    LabVIEW Consultancy, LabVIEW Training
    Rent a LabVIEW Developer, My Blog

  • In Which type of mobile phones i can access Oracle application?

    Hi All,
    I was wondering like , in which type of mobile phones (like Windows, Blackberry etc) i can access Oracle application ? Due to some reasons sometimes i can't use/carry my laptop, so in that case i want to open/access Oracle application in my Mobile Phone.
    please advice...
    Thanks
    Skudikyal

    Hi!
    Generally it should be possible with nearly every mobile accessing to the database via command line mode.
    If you want to access to Apex you need a mobile with a browser or Apple's iPhone with an 'app'.
    Gerhard

  • Using labview applications on mobile phones

    Hello,
    I am interested in using LabVIEW applications on Mobile Phones. Kindly suggest how it could be used and which type of mobile phones are suitable it.
    Thanks

    Hi Intelligent,
    National Instruments has a Mobile Module for developing applications specifically for mobile devices.  Check out this article for supported devices: LabVIEW Mobile Module Software Requirements and Supported Devices.
    In addition, if you device runs Windows XP Embedded, you should be able to install the LabVIEW Runtime Engine and then run an executable built in LabVIEW.
    Have a great day,
    Chris V
    Applications Engineer
    National Instruments

  • Installing applications onto mobile phone.

    I've just got a Sony Erricson k750i and I'm trying to install a j2me app onto the mobile phone, I've tried 2 ways but can't get either to work.
    1) USB - I'm able to browse the phone's files fine via USB cable but I have no idea where to put the .jar and .jad file in order for the phone to be able to run the application.
    2) Bluetooth - I set up a connection between my PC and phone, I click send file from pc-> phone, I click "accept" on the phone but then it says "downloading failed" even though on the PC end it says it was sucessful.
    Please help me install this app, thanks

    Thanks for the reply.
    I managed to get it working via USB by placing it in the 'other' folder, which then allows me to install it into games or application.
    I having a new problem though: I am able to copy over .jars from the example applications folder that came with the Sun wireless toolkit and this will install fine. The problem comes when I try and install my own projects onto the phone. They copy over fine, but when I click install, it says 'operation failed'
    I'm not sure what I'm doing wrong, because the projects compile fine in the wireless toolkit, and I click project -> package and it writes the files. I copy them over, try and install and it fails.
    Any ideas?
    Thanks

  • Deploying Oracle Applications over mobile phones

    Hallo!I am an Oracle Newbie studying for the Oracle 10g Administration course.
    I am just curious.If one wanted end users to access Oracle Applications e.g E-Business Suite,Discoverer,Siebel etc over mobile phones such that Oracle Forms and Reports could be loaded over a mobile phone,what would this entail?
    What kind of configurations would need to be done on the Application Servers plus on the mobile phones themselves to realize this?Will you need J2ME plus other s/w to do this?
    Please give me a very brief overview as to the applications needed and configurations to be done to achieve this.
    Thanks.

    1) >>>>I ftp-d my rdf file to the default demo directory
    "OraHome1/j2ee/OC4J_Demos/applications/reportsDemo/web/examples/Tools/emp.rdf"
    <<<<<
    The name of the file is "emp.rdf" and you are giving request for "employees.rdf".
    The important thing is the location of file should be in env variable "REPORTS_PATH"
    ( to be set in $OH\bin\reports.sh)
    Thanks
    The Oracle Reports Team

  • J2me midlet application needs settings on mobile phones

    I have developed j2me midlet application and the jar file can be installed in the mobile phones,
    But to run the application, i downloaded the service provider's GPRS settings on the phone, but Still i need to do some setting changes, like create access points etc. (different setting on different models)to make by midlet run. Why is this happens? is there any way to make the midlet run without any extra settings.
    Please very urgent .. suggesstions please.
    Thanks & Regards,
    Geetha

    Hi,
    If your GPRS is working without any extra settings then your midlet should also work without any extra settings. So you should ask your customers to make sure that their GPRS connection is proper.
    But this would always ask you confirmation for selecting Access Point. To remove that you have to sign your midlet with 3rd party such as Thawte or Verisign. If you dont want to do that then you change the settings of the phone in such a way that it will ask just the first time and then it will not ask for the permission. For doing that go to the Application manager -> Your MIDlet -> Settings. In that change the settings for ask only once.
    Hope this helps you out.
    Sunil

  • Can not see the contacts in E63 mobile phone

    Hi,
    I amusing E63 mobile phone. I am not been able to view the contacts in the mobile, so not been able to use the same. But when an incoming call comes in I do get the name resolution of the person calling and his mobile no which is stored in the contacts.
    I tried backing up the mobile and all the time the backup of contacts could not happened and besides Contacts rest all is backed up....
    Pls do let me know how to resolve this issue..
    Thanks in advance...

    Hey  kartik_sh
    Welcome to the forum, your contacts are on the sim card and they will need to be either copied to Contacts on your phone for easy access.
    It is not clear from your description what could be causing this issue, so I will present a couple of possibilities. The first is that the contacts that you cannot see are stored on the SIM card and not in the phone memory, to remedy this you can follow these steps to copy your contacts into the phone memory:
    Menu>Communic.>Contacts>Options>SIM contacts>SIM directory>Options>Mark/Unmark>Mark all>Options>Copy to Contacts
    If this is not the case, and if after selecting Contacts you see the options Go Online and ChatServiceBuddy, it means that the ”Ovi Contacts Chat” service is selected as the default view. This service has been discontinued and replaced by Nokia’s new Chat service powered by Yahoo. You can set your default Contacts view back to the contact information stored in your phone by following these steps:
    •Select Menu>Communic.>Contacts
    •Press the left navigation key to select the central field at the top of the screen, then press the centre of the navigation key to open the menu, and finally select Phone
    •You should now see the contacts stored in phone memory. To make this the default view, select Options>Settings>Default contact list>Phone
    If you are interested in the new Chat application, you can switch the Contacts view back to the Ovi Contacts view, select Go Online and sign in with the same user identity and password that you use to log into this forum. Your phone would then remind you that Ovi Contacts Chat is discontinued and take you through the steps to download and install the new Chat application. We would recommend that you use a WLAN connection for this.
    If the two suggestions above do not resolve your issue, we can investigate further.
    Out of interest, when you say that creating a back-up did not successfully back-up contacts, do you mean that you created the back-up with Nokia Suite and the report displayed at the end of the process indicated an error? If there was no error during the back-up process, it is likely that the back-up was successful and we still need to work out whý the information is not appearing in your phone.
    Let me know if it works 
    Kind regards
    Carl
    If this post answers your question, you can help others by clicking the green accepted solution' button.
    Please ask your questions to the main board and not to my mailbox. Thank you.

  • Portal content in java enabled mobile phone browser

    Hi Experts,
    I havwe a requirement in which the portal webdynro application is to accesed through java mobile phones , but the portal is designed for computers(desktops).....
    my query is that how to reuse the same portal app for the mobile phone and can we have wrapper for mobile so that the mobile phone uses 'light' mode of portal
    regards,
    prakash

    Hi,
    Take a look at the following link [https://cw.sdn.sap.com/cw/groups/portal-on-device].
    Regards,
    Alex

  • Error message: "the software required for communicating with Ipods and mobile phones was not installed correctly....

    2 error messages when opening itunes: "The software required for communicating with Ipods and mobile phones was not installed correctly.  Do you want Itunes to repair this for you?"  When clicking yes another message indicates not able to remove services.  Another message is: "Service (ipod service) could not be installed.  Verify that you have sufficient privileges to install system sources."  I've uninstalled all Apple services (itunes, quicktime, apple software update, apple mobiles devices support, bonjour and apple application support and reinstalled itunes/quicktime - no change in error messages.  I cannot burn CDs using Itunes.  This all seemed to happen when I updated itunes to version 10.  I have a Windows 7 64-bit operating system on a Dell Inspiron Zino HD; the Itunes software is also 64 bit.

    See the second box of  Troubleshooting issues with iTunes for Windows updates.
    tt2

Maybe you are looking for