Java for Mobile?

Hi All,
Merry Christmas
I'm new to java and would really appreciate your help and advices
I'm an IT student in the Arab Open Univ. with a very limited knowledge about Java
My final project is a simple call cost callculator.
I'm seeking your advice on how to start (e.g. which paltform to use, which IDE, APIs, ...etc)
Regards,
MA

It isn't strange at all. I'm planning to learn Java AND work on my project at the same time.As it might be difficult to do several things at the same time, what about finishing the project first and learning Java second?

Similar Messages

  • Java for mobile computer!

    Hi!
    I have a mobile computer that runs Microsoft� Windows Embedded CE. NET 4.2... I can access the Internet with it, but I can't run jsp scripts... what do I have to install in my mobile computer to run jsp scripts???
    null

    When you say you cannot run jsp scripts, do you mean jsp pages on the internet, if so this has nothing to do with your devise as you only need an HTML browser to access jsp, all processing is done on the server.
    If you are tryinjg to run pages locally you will need java installed, and web-server software installed.
    You can get Java for mobile devices, but I dont think you would get a web-server running.

  • CREATION OF MEDIA PLAYERS USING JAVA, FOR MOBILES

    CAN ANY ONE GIVE ME DETAILS IF WE CAN CREATE A JAVA APPLICATION THAT FITS EASILY INTO A MOBILE, AND PLAY MEDIA FILES OF MANY FORMATS?

    " \ \      / / | | | |  / _ \    |_ _| / ___| "
    "  \ \ /\ / /  | |_| | | | | |    | |  \___ \ "
    "   \ V  V /   |  _  | | |_| |    | |   ___) |"
    "    \_/\_/    |_| |_|  \___/    |___| |____/ "
    " \ \ / / | ____| | |     | |     |_ _| | \ | |  / ___| |__ \"
    "  \ V /  |  _|   | |     | |      | |  |  \| | | |  _    / /"
    "   | |   | |___  | |___  | |___   | |  | |\  | | |_| |  |_| "
    "   |_|   |_____| |_____| |_____| |___| |_| \_|  \____|  (_) "
    "                                                            "

  • Java ME embedded database used in BlackBerry for mobile CRM

    Interested in business applications of Java ME mobile technology, or in embedded database systems available for Java ME?
    If so, take a look at the news posted on McObject's 'Perst Blog'. Maximizer, a British Columbia company, has adopted the Perst Lite open source, object-oriented database for Java ME to integrate with its customer relationship management (CRM) software on BlackBerry devices.
    What Maximizer gets from Perst Lite -- in addition to efficient data management and 'transparent persistence' for developers -- is support for the JSR 75
    specification, which enables database files to be saved to SD cards within the BlackBerry smartphones.
    The post is at at [http://www.jroller.com/perst/entry/perst_lite_chosen_to_improve]{size}{font}

    Spam blocked. As this user has only ever logged in here to post spam, the user account is blocked for a year.
    db

  • Java programing for Mobile devices on OS X

    im completly new to java, and very interseted in getting started with developing for mobile devices..
    i have experience with other languages (C#.NET, a little VB.NET, BaSH, Ruby, Python...)
    but i dont really know were to start..
    what do i need to create, compile, and use java aps on mobile devices
    Also, im using OS X 10.4, so i would need someting mac compatible...
    (i have an HTC S710 with Windows Mobile 6.0)
    Message was edited by:
    maxtors

    Hi java is platform independent , so dont worry about support on MAC etc.
    what i would suggest is before thinking of coding for mobiles learn core java. Install editors like netbeans,eclipse and understand the languages.
    The folowing links will help you
    http://java.sun.com/docs/books/tutorial/
    FYI java has Java ME platform for developing application on mobiles
    Vijay

  • How do I enable java for my android mobile.

    I am getting an error "enable java for your browser". how do I do that as I am unable to see the preferences tab anywhere.

    Oracle doe not make the Java plug-in for Android due to Oracle's lawsuit against Google which of course is the developer of Android. Note that Java and JavaScript are two different things in case the message actually said JavaScript which should be enabled.

  • Where can I find a good tutorial for mobile game developement with J2ME ?

    Hi All,
    I'm completely new to J2ME programming. But I have past experience on J2SE developement. Now I would like to know that where can I find a good tutorial for mobile game developement with J2ME ?
    I'll be very greatful if I can find a useful step-by-step tutorial (eg. "The Java Tutorial" for J2SE)
    Please point me ot the direction.
    Thanks
    ZuriJAckshoT

    ibook-widgets.com    have a free tutorial book in the iBooks store.  Search for "Create your first interactive book using iBooks Author"   they also  sell widgets.
    I  dont have any connection - I  found their eBook in the store long ago  and used it to learn more about iBA.
    The best advice though, is be patient,  go back over the process step by step, I cannot  access the Help files for some reason.. but i am sure its in their.

  • Creation of a database engine for mobile devices using j2me

    am trying to develop a database engine for mobile devices.. it is to develop a miniature version of the DBMS that
    can be deployed on a mobile phone..I have to develop my own code for performing tasks such a s creating a table,
    inserting values into it, selecting from it etc..
    I limited my self to develop the software so that it can perform 3 functionalities of create, insert,select..
    I should be taking the details such as table name and its parameters from the user and then should be able to
    create a suitable data structure for it(i tried to develop a class)...
    Usage of RMS package helps me partially in this.. I did that and ll be doing that..
    I got stuck while developing the code for creation of a table.. I am facing problems in creating a dynamic data
    structure for a table and also to use such data structure else where in my project..
    I need help in developing an algorithm for this..
    I would be very grateful to u all if u help me out in developing the code for this project..

    I'm sorry for the amount of time it took me to get back. Derby is an open source database written entirely in Java. I do not know if it can support resource constrained devices like MIDP compliant, but may work okay with CLDC.
    But outside of Derby being a solution, let me give you a few ideas off the top of my head.
    Set up a database server in a separate thread. This server will really be your controller for RMS access.
    Since RMS is just a big sequential 'pipe' you will have to think of data as 'frames' - (starttable) (tableID) (tablename) (data) (tablename) (data).....(endtable).
    When you need to write additional data, just append it to the end of the RMS object.
    When you need to retrieve data, thing are more complex.
    1. Read in all data, looking for your particular tableID. This may be made much easier using RMS filters - (I'm not sure, I've never used them)
    2. Once start of table of interest is found, stick the data elements in either a java vector or array until you reach the table end identifier. I think vector will be a better choice - trust me. (I think its available in J2ME...)
    3. Package this into a do while loop until the element you are searching for is read. If you need to do some sorts on the data or something else that requires the all the data to be present then you need all the data for that particular table. One thing will always be clear. The first data you grab will always be some start table identifier and the last data you grab will be an end table identifier. We just don't know which table because of how we put stuff in the RMS resource.
    This provides you a few positives as well as negatives:
    Positive:
    1. Fast data writes, no need to search for a particular table before accessing it, nor do you need to search for an index in that table.
    2. When looking for data, data may* be found without searching through the entire table. This is accomplished with RMS filters or logic test within the RMS read loop.
    Negative:
    1. Slow when all data of a table is needed (i.e. compute sums or averages of entries). The entire RMS database must be read to ensure all the entries are searched. An example of how this is a problem is as follows: You have 5000 entries in you RMS database resource and you are looking to compute the average of a value in some table. When you first wrote the data to the table, it was done sequentially and no other data for that table exist. But we can't tell if that's the case, so we have to read through all 5000 entries to make sure we looked for every piece of data.
    Beacuse of this issue, this database structure, performance may be fine for 50K - 100K entries (depending on table element size), if the reading requirements don't force full data reads. Otherwise, 25K may be an upper limit.
    I hope this helps.
    Edited by: estarkey on Mar 17, 2009 9:15 PM
    Edited by: estarkey on Mar 17, 2009 10:01 PM

  • 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

  • SAP NetWeaver AS ABAP 7.1 for Mobile 7.1 Trial Version

    From where can I get the SAP NetWeaver AS ABAP 7.1 which is required to run data synchronization with
    NetWeaver Mobile 7.1 ?
    As per the download notes, for mobile 7.1 -
    "Note: SAP NetWeaver AS ABAP 7.1 is NOT part of the download package, but is integral part of the product shipment SAP NetWeaver Mobile 7.1. In order to synchronize applications that you have developed with SAP NetWeaver Mobile 7.1 Trial Version, you absolutely need to install SAP NetWeaver AS ABAP 7.1 also. Without such installation, applications you have developed with the Trial Version will only be able to run standalone on NW Mobile Client, but without data synchronization.
    Does the CE version contain AS ABAP 7.1? Link to the specific download pl.

    Hi,
    There's no SAP NetWeaver AS ABAP 7.1 trial version available on SDN. The CE trial version only contains the Java AS.

  • Java FX Mobile Allpication Deployment?

    I'm asking this question again because I don't think it has been answered despite being asked a long time ago here.
    I can build an FX Mobile Application in Netbeans and run it using the default mobile emulator. However if I try to run using the Windows S60 emulator from Nokias S60_jme_sdk_3rd_e_FP1 SDK I get 'Application not compatible with phone'.
    Now I'm wondering do any real mobiles support Java FX?
    As a test I built my test 'FxMobileApplication' to run in a browser by changing 'Properties' - 'Run' and selecting 'Run in Browser'. This produced a FxMobileApplication.html file in the dist directory. That file launches Firefox, but Java throws a string of Exceptions:
    Exception in thread "AWT-EventQueue-13" java.lang.Error: Couldn't launch FX Stage fxmobileapplication.Main_run
         at com.sun.javafx.runtime.adapter.AppletStartupRoutine.run(Unknown Source)
    ... and a whole lot more similar.
    I'm somwhat confused!
    Perhaps the Nokia emulator is suffering from the same problem as Firefox?
    Perhaps I can't run my mobile app using 'Run in Browser' ?
    Perhaps there is still no support for Java FX mobile applications on any platform other than the ME emulator?
    Hopfully sombody can help to ease my confusion.
    TIA

    It seems the S60 runs on Symbian OS.
    Currently JavaFX is supported only on Windows Mobile 6.1+, IIRC.

  • Flex for mobile development

    Is it possible to use Flex for developing RIAs for mobile
    browsers?
    From what I've read, Flex doesn't seem to be suitable for
    creating applications on mobile phones. But I wanted to be sure
    that's why raised this question here.

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    Adobe - Flex 3:
    Flex is a highly productive, free open source framework for
    building and maintaining expressive web applications that deploy
    consistently on all major
    Link:
    http://www.adobe.com/products/flex/
    Adobe Flex 3 Language Reference:
    Frame Alert. This document is designed to be viewed using the
    frames feature. If you see this message, you are using a
    non-frame-capable web client.
    Link:
    http://livedocs.adobe.com/flex/3/langref/
    Flex.org - Rich Internet Application Development:
    Welcome to the new Flex.org. This site aggregates Flex news
    from a number of sources, and allows community members to
    contribute their own content as well.
    Link:
    http://flex.org/
    Flex 3 - Versioning:
    You might encounter some versioning issues when working on
    Adobe Flex applications. When compiling, you can choose the version
    of the SDK to use and you
    Link:
    http://livedocs.adobe.com/flex/3/html/versioning_1.html
    Adobe Flex - Wikipedia, the free encyclopedia:
    Adobe Flex is a collection of technologies released by Adobe
    Systems for the development and deployment of cross platform rich
    Internet applications based
    Link:
    http://en.wikipedia.org/wiki/Adobe_Flex
    Adobe - Flex Developer Center:
    Check out the getting started guide on learn.adobe.com, with
    special areas for developers using Flex with PHP, .NET, Java, and
    ColdFusion.
    Link:
    http://www.adobe.com/devnet/flex/
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • Filestream in Java Fx Mobile

    I am making a moblie application by java fx.
    I want to read strings from a files such as 'test.txt'.
    also, I want to save data in files.
    I made a iostream using java.io. but it doesnt work in Mobile.(even comfile cant be. I think is it not allowed)
    is there anybody who knows how to use iostream in java FX mobile?
    Help me.
    Thanks.
    Edited by: Marionette7 on Jul 21, 2009 9:41 AM

    It depends on what you need to do. I used it to save and load some properties, on the file of given name, but storage method is actually hidden by JavaFX, which manages to make it work whether we are a desktop application, a browser one, a mobile one, etc. Some mobiles (or TV sets, etc.) might have no concept of file, and allow storage only in a kind of registry, etc.
    If that's all you need (store and restore your own data), these classes are usable.
    If you want to open an arbitrary file, it becomes hairy: how do you specify the path of the file?
    If I look at [MIDP 2.0|http://java.sun.com/javame/reference/apis/jsr118/] API, for example, I see OutputStream (and InputStream) and derivated streams (Data, ByteArray...) but no way to specify a path... No FileOutputStream.
    Now, I hit my knowledge bounds, as I haven't coded for Java ME yet. Perhaps you should ask such question in a [more specialized forum|http://forums.sun.com/category.jspa?categoryID=23]?

  • How do I configure my application to provide access for mobile and web brow

    Hi everyone.
    I have one application and I need to provide access for mobiles and desktop browsers, and I don't know how do I configure my application to do this.
    Let me explain:
    In my jDeveloper I have One application and 3 projects:
    -Mobile (here is my mobile application)
    -Model (here is my model)
    -ViewController (here is my Web Browser application)
    In Mobile I have
    JavaEE Web Application name: mobile-Mobile-webapp
    JavaEE Web Context Root: mobile
    ViewController I have
    JavaEE Web Application name: mobile-ViewController-webapp
    JavaEE Web Context Root: myapplication
    When I run some page of ViewController I have this URL "http://localhost:7101/myapplication/index.jspx".
    When I run some page of ViewController I have this URL "http://localhost:7101/mobile/index.jspx".
    My problem is that, I want to have Just one landing URL like that "http://localhost:7101/myapplication/index.jspx" and when I get this URL by Desktop Browser my ViewController is showed, and when i get by Mobile the Mobile project is showed.
    Someone knows how do it?
    Thanks....

    Yes, I can, thanks for response.
    But, don't have some configuration in Oracle for this? I've been thinking do this with java or JavaScript, but I was looking something more beautiful for this.
    Java or JavaScript is the only way?

  • There is any Scripting languages is used for mobile application development

    Is there is any Scripting languages is used for mobile application development?
    For example java script,vb script is used for web development.Like that is there is any scripting language is used for mobile application development along with J2me.
    Thanks & Regards, Sivakumar.J

    806437 wrote:
    .. is there is any scripting language is used for mobile application development along with J2me.If you are talking about javax.script,
    google ( [url http://www.google.com/search?q=java+me+javax.script]java me javax.script ) gave me http://sourceforge.net/projects/rhinoj2mecldc/

Maybe you are looking for