Can I create a java app for my palm zire 71 that uses floating point calc

I am an eclipse user that is looking at studio creator 2 and was wondering if I could create a java app for my palm zire 71. I have read alot about no floating point support in midp... is that true for java on the palm? If so, how does one calculate with floats and doubles to do sqrt functions etc?
Thanks in advance for your time
Dean-O

I looked at netbeans and it does not support floating points in midlets. Not good for palm app if no floating point ability. J2ME supports floating point but in netbeans... is uses midlets and there are no floating points. Now what does one do? Not that dreaded C++
THanks in advance
Dean-O

Similar Messages

  • How can I creat my own app for iPhone by simple way?

    Hi
    can you help me please
    I need to make an app for my charity company
    but I don't know how can I do app for iPhone
    I hope to hear from u
    thanx

    How about creating the ringtone on your iPhone? You may want to check this out:
    http://www.macworld.com/article/2010514/how-to-create-a-ringtone-on-your-iphone- with-garageband.html
    You need GarageBand 1.3 for iOS - is your iPhone compatible with that?

  • Where can I get a replacement charger for a Palm Zire m150

    Still using a Zire m150 but have lost the charger, any help?
    Post relates to: Zire

    it uses industry standard miniUSB, search for a miniUSB cable, commonly found in generic mp3 players, portable hard disks...
    Don't confuse with microUSB.
    webosnation.com is another option for help.

  • What type of files can we create in Java?

    In general what type of files can we create in Java?
    For example, we can create .dat and .txt files as follows:
    DataOutputStream ostream;
    ostream = new DataOutputStream(new FileOutputStream("myfile1.dat"));
    or
    ostream = new DataOutputStream(new FileOutputStream("myfile2.txt"));
    Can we create ASCII?
    Thank you in advance for your answers.

    In general what type of files can we create in Java?You know that a file is nothing more than a series of ones and zeros, with eight of those bundled together as something called a byte. What they actually mean is what you make them to mean. Short: you can write and read any file type you like, but doing that semantically correct it is your responsibility.

  • Is it possible I can create an iOS app for free???

    Is it possible I can create an iOS app for free??? I don't care what site, I just wanna know and how to add the new app to the App Store.....

    You need to pay a yearly fee of $99 dollars (US) in order to be able to test the apps on your ipod and post to the app store. Other than that creating apps are "free".

  • HT201209 How can I create an apple ID for my daughter, without adding a credit card to the account?

    How can I create an apple ID for my daughter, without adding a credit card to the account? I have tried to purchase a gift card online, but it just credits it to my account; I cannot use it to credit her new account therefore I cannot create that account.

    There are intructions on this page for how to create a new account without giving credit card details : http://support.apple.com/kb/HT2534
    e.g. log out of your account, find a free a free app in the store, click on its free 'price' :
    click on 'create Apple id' on the popup :
    Agree to the terms and fill in the details, and you should get 'none' on the payments screen.

  • How can I create an apple ID for Free?

    How can I create an apple ID for Free?

    You can create an iTune and App Store account without credit card details
    1. Sign out of current Apple ID if you are sign-in to one (important)
    2. Go to App Store and select a free app
    3. Tap INSTALL APP
    4. Create New Apple ID
    5. Confirm Your Country
    6. Agree with Terms and Conditions
    7. Fill in your Apple ID and Password (you must create a new Apple ID; don't use your old Apple ID)
    8. Create and answer your secret question
    9. Select NONE for Payment Method
    10. Fill in Billing Address
    11. Submit application for new Apple ID
    12. Wait for verification email
    13. When email arrive, verify your account
    14. Start downloading your free apps

  • Do I need to upgrade my CC Account to create a folio app for non-iPad devices?

    Hello,
    I have never created a DPS app, but have been researching this for the last 4 weeks.  From what I understand, I can create a DPS app for iPad using a single edition or a multifolio app.  If I want to create a DPS app for any other device, I would need to create a multifolio app.  I have only a Creative Cloud account, but I believe that I will need a Professional or Enterprise account to create multifolio apps.  Is there another way that I could create apps for Android, iPhone, etc devices without having to upgrated my account?
    Thank you.

    Your research and understanding is correct. If you want to use DPS to target anything other than an iPad you need Professional or Enterprise edition.
    Neil

  • How can i  apply this  java program for  a jsp page?

    import java.io.*;
    import java.util.*;
    public class FileProcessing
      //create a vector container  for the input variables
         Vector variables = new Vector();
      //create a vector container for the constants
         Vector constants = new Vector();
      /*create a string expression container for the equation
         as read from the file */
         String expression = " ";
      //create double result container for the final result
         double result = 0;
         public boolean processFile(String filename,String delim)
          //index for values vector
              int num_values = 0;
          //index for constants vector
              int num_constants = 0;
          //current line being read from the external file.
              String curline = " ";
          //start reading from the external file
              try
                   FileReader fr = new FileReader(filename);
                   BufferedReader br = new BufferedReader(fr);
                   while(true)
                        curline = br.readLine();
                        if(curline == null)
                             break;
                    //determine the type of current interaction
                        boolean variable = curline.startsWith("input");
                        boolean constant = curline.startsWith("constant");
                        boolean equation = curline.startsWith("equation");
                        boolean output = curline.startsWith("result");
                   //on input variables
                        if(variable)
                          StringTokenizer st = new StringTokenizer(curline,delim);
                          int num = st.countTokens();
                          int count=0;
                          while(st.hasMoreTokens())
                               String temp = st.nextToken();
                               if(count==1)
                                    byte b[]= new byte[100];
                                    System.out.println(temp);
                                    System.in.read(b);
                                    String inputval = (new String(b)).trim();
                                    variables.add(num_values,inputval);
                                    num_values++;
                               count++;
                        // on constant values
                        if(constant)
                             StringTokenizer st = new StringTokenizer(curline,delim);
                             int num = st.countTokens();
                             int count = 0;
                             while(st.hasMoreTokens())
                                  String temp = st.nextToken();
                                  if(count==1)
                                       byte b[]= new byte[100];
                                       System.out.println(temp);
                                       System.in.read(b);
                                       String cons = (new String(b)).trim();
                                       constants.add(num_constants,cons);
                                       num_constants++;
                                  count++;
                        // on equation
                        if(equation)
                             StringTokenizer st = new StringTokenizer(curline,delim);
                             int num = st.countTokens();
                             int count = 0;
                             while(st.hasMoreTokens())
                                  String temp = st.nextToken();
                                  if(count==2)
                                       this.expression = temp;
                                  count++;
              // now we are ready to evaluate the expression
                       if(output)
                          org.nfunk.jep.JEP  myparser= new org.nfunk.jep.JEP();
                          myparser.setAllowAssignment(true);
                          for(int i=1;i<variables.size()+1;i++)
                             String name = "arg"+Integer.toString(i);
                             myparser.addVariable(name,new Double(variables.get(i-1)
                                                .toString()).doubleValue());
                          for(int i=1;i<constants.size()+1;i++)
                               String name = "arg" +Integer.
                                         toString(i+variables.size());
                               myparser.addConstant(name,new Double(constants.get(i-1).toString()));
                   //output is obtained as follows
                          myparser.parseExpression(expression);
                          result = myparser.getValue();
                          System.out.println("Assay value: "+result);
              catch(Exception e)
                   System.out.println(e.toString());
              return true;
         public static void main(String[] args)
              FileProcessing fp = new FileProcessing();
              fp.processFile("input.eqn",":");
    }//my text file name is: "input.eqn" (given below)
    input:Enter Value1:arg1
    input:Enter Value2:arg2
    input:Enter Value3:arg3
    constant:arg4
    constant:arg5
    Equation:arg1+arg2+arg3
    result:

    how can i apply this java program for a jsp pagewhy do you want to do this ?
    Your program reads from a file on the disk and formats based on a patterm.
    Jsp is not intended for such stuff.
    ram.

  • Is it Possible in JSF? Can anyone recommend any java Technology for this?

    I am doing Post Graduate Degree in Computer Science. This is my final semester and doing project work.
    Any body having idea about my requirment, help and guide to me
    My description and questions are as follows:
    Current Approach:
    PHP has been used to achieve the flexibility of creating custom images on-the-fly. Using this approach we were able to create a web-interface similar to the application client, where we could display links and get the exact look and feel of the application client.
    Drawback:
    This approach forces us to use two different technologies Java and PHP, since our system uses 'Java' accessing all the API's from PHP becomes a problem. while PHP provides a way to invoke any java method. It comes with a draw back, the method calls are little slow. This delay's are loading of web-page.
    Requirment:
    1. Creating custom images on various locations of the screen
    2. The Exact look and feel of the application map should be achieved
    3. Place elements and links correctly as in application-client reflect any changes
    4. Generation events on the Links and Elements
    5. Setting Backgroud images for different maps
    Questions:
    1. is it possible in JavaServer Faces (BETA)?
    2. If it is possible is JavaServer Faces(BETA) How to create custom images and create interfaces among them?
    3.Can anyone recommend any java Technology for doing this?
    Anybody having idea, help and guide me for doing my project

    hi,
    I think you can use JSF
    cheers
    Trajano

  • Can I still download iwork apps for free with a new apple id?

    I bought a new ipad,iphone and mac. all activated for the first time with the same apple id. i can download all iwork apps for free at that time because the devices were bought after iwork is free for "new" devices. later on i'm thinking of creating a new apple id, can i still download iwork apps for free with the new apple id on all my 3 devices?

    Once they've been downloaded they can't be downloaded again using a different Apple ID.
    " This offer is limited to one Pages, Keynote and Numbers content code per qualifying product purchased":
    https://www.apple.com/au/creativity-apps/mac/up-to-date/

  • Can I create a live wallpaper for Android with AIR?

    We have developed a beautiful weather app with Adobe AIR.
    Androd users ask us to create a live wallpaper and widget plugins.
    Is it possible?
    Can we create a live wallpaper for Android with AIR?

    Turned out it is NOT possible to create neither live wallpaper nor widget for Android with AIR.
    http://forum.starling-framework.org/topic/live-wallpaper-and-widgets-on-android

  • Is there (or can I create) a keyboard shortcut for the command "export"?

    is there (or can I create) a keyboard shortcut for the command "export"?

    Keyboard Shortcuts are created in the System Preferences app, Hardware section, Keyboard, Keyboard Shortcuts tab.
    Select Application Shortcuts on the left.
    Click the "+" sign on the right and in the dialog box that pops up, enter: "Export..." and your preferred key combination. Here's an example:
    Keep in mind that when you enter the name of the action in a layered menu, such as File > Export..., or Share > Export..., you are only going to enter the last menu choice, not the higher levels.
    Regards,
    Jerry

  • How can I create a Java help file (*.hs)?

    How can I create a Java help file (*.hs)?

    Thanks a lot.
    I know it is rather poorly used, but I still need it for our current software
    Mit freundlichen Grüßen / With best regards
    Hans-Jürgen Hengsbach - Produktmanagement / Product Management (-227)
    Von: Peter Grainge [email protected]
    Gesendet: Dienstag, 29. April 2014 16:48
    An: Hengsbach.Hans-Juergen
    Betreff: How can I create a Java help file (*.hs)?
    Re: How can I create a Java help file (*.hs)?
    created by Peter Grainge <http://forums.adobe.com/people/Peter+Grainge>  in RoboHelp - View the full discussion <http://forums.adobe.com/message/6340535#6340535

  • I have four iphones on my icloud account, can i create an icloud account for each phone?

    I have four iphones on my icloud account, can i create an icloud account for each phone?

    Welcome to the Apple Community Joe.
    There is nothing stopping you doing so, but you won't be able to sync anything between them.

Maybe you are looking for