Slashdot Mirror


Ex-Sun Employees Are Taking Java To iOS

An anonymous reader writes "Ex-Sun employees did what Sun/Oracle failed to do since the iPhone launched. They brought Java to iOS and other mobile devices. They are getting major coverage from Forbes, DDJ, hacker news and others. They are taking a unique approach of combining a Swing-like API with a open source and SaaS based solution."

115 comments

  1. Not entirely useful by medcalf · · Score: 5, Informative

    Just to be clear, this does not allow users to run Java apps on their phones. It makes it easier for Java developers to port Java apps, though.

    --
    -- Two men say they're Jesus. One of them must be wrong. - Dire Straits
    1. Re:Not entirely useful by binarylarry · · Score: 4, Insightful

      Why would you want a desktop app on a phone anyway?

      Except for certain very narrow use cases, it's better to have an app written for phones.

      --
      Mod me down, my New Earth Global Warmingist friends!
    2. Re:Not entirely useful by aaaaaaargh! · · Score: 4, Insightful

      There hundreds of thousand Java apps that are not desktop apps, like e.g. every Android app. So what's your point?

    3. Re:Not entirely useful by aaaaaaargh! · · Score: 1

      Seems that my post missing an auxiliary verb. Sorry!

    4. Re:Not entirely useful by Desler · · Score: 1

      Great but this won't work for Android apps since they don't use Swing.

    5. Re:Not entirely useful by Anonymous Coward · · Score: 0

      Because I want to run apps like Anathema or Hero Designer and don't want to lug a desktop around. Just shove the ipad in the bag with the game books, or better yet, not even take the game books just the ipad.

    6. Re:Not entirely useful by sl4shd0rk · · Score: 4, Insightful

      Why would you want a desktop app on a phone anyway?

      Java is a portability option (if you are mindful). You can write a single Java based application and run it on any platform supporting the version you compiled for. This gives you instant portability to other platforms without having to wonder about ended-ness, hardware, file structure and myriad other things. Imagine writing a game on Linux and automaticaly, it would run on Windows, Mac and any other Java supported platform.

      Now, all this ease does come at a cost. It takes an extra layer of software (java VM) and more CPU power and RAM than a native application but this is the tradeoff. If you are wise, you can get acceptable performance out of modern hardware.

      In reality, developers haven't always coded Java with portability in mind. Some platforms (won't mention any names) have been suspect of "hobbling" the stability of Java on purpose because said platform had their own implementation to market, but that's beside the point. Java portability is a keen aspect of the language which sometimes gets overlooked. It can offer some very real benefits under favorable circumstances but is by no means the end-all many would like. It has it's drawbacks too but the portability is a big one.

      --
      Join the Slashcott! Feb 10 thru Feb 17!
    7. Re:Not entirely useful by robthebloke · · Score: 0

      There hundreds of thousand Java apps that are not desktop apps, like e.g. every Android app.

      With the exception of those using the NDK, i.e. most of them.....

    8. Re:Not entirely useful by Anonymous Coward · · Score: 1

      From what I see it makes it easier for Java minded devs to create apps that will compile natively to all platforms.

    9. Re:Not entirely useful by Anonymous Coward · · Score: 4, Informative

      It will work for android. Rather than trying to run Swing on the native platform, It compiles down to whatever the native platform is. Basically in C1 you are building a meta app using their libraries. Then when it compiles, for iOS it will generate Obj-C, for Android it will generate a UI using standard Android widgets (I know Android is java, but not sure what their UI framework is called).

      I'm a Java/iOS developer and have been playing around with it a bit. IMO, it has a long way to go before being useful, but it's exciting to see that what they are doing is possible. Currently their API is pretty sparse and their design tools are very primitive, so I think to match what a lot of apps are doing today, you would still end up writing a lot of native code. They have their own version of JNI that let's you do that.

      I think if they keep working on it though, create a cool UI builder, add more wrappers around more core platform services (location services would be a good one to add next I think) I think they will get there.

      It's neat stuff! I'm still going to do my iOS apps in Obj-C though for the time being.

    10. Re:Not entirely useful by oakgrove · · Score: 1

      most of them

      I seriously doubt that is true. Do you have a reliable source that agrees that most Android apps use the NDK?

      --
      The soylentnews experiment has been a dismal failure.
    11. Re:Not entirely useful by gstoddart · · Score: 2

      Why would you want a desktop app on a phone anyway?

      I don't know about you, but my cell phones have had stuff on them for years that say "powered by Java" (which mostly I launch by accident, and then close after waiting for the damned thing to start up).

      Java is used for much more than just desktops. The Micro Edition has been around a long time.

      Many many phones have Java code on them.

      --
      Lost at C:>. Found at C.
    12. Re:Not entirely useful by Bogtha · · Score: 4, Informative

      Android applications aren't Java applications. They are written in the Java language, but they are then compiled to run on the Dalvik VM. Even if they were Java applications, you couldn't simply drop them onto any old Java VM and have them work; they need all the runtime libraries present on Android to work.

      --
      Bogtha Bogtha Bogtha
    13. Re:Not entirely useful by CosaNostra+Pizza+Inc · · Score: 2

      From what I see it makes it easier for Java minded devs to create apps that will compile natively to all platforms.

      This is why I love developing in Java.

    14. Re:Not entirely useful by DrXym · · Score: 2

      The problem is people don't want to port Java apps, they want to port Android apps. It's not much good supplying some API which is totally different to Android including the APIs that UIs are designed with. Basically it needs to be something which compiles Dalvik byte code into LLVM byte code and links with associated runtimes.

    15. Re:Not entirely useful by SteveFoerster · · Score: 1

      Just so long as you catch moose and squirrel. ;-)

      --
      Space game using normal deck of cards: http://BattleCards.org
    16. Re:Not entirely useful by gl4ss · · Score: 2

      most of them

      I seriously doubt that is true. Do you have a reliable source that agrees that most Android apps use the NDK?

      If I had to pull a number out of my stetson(I do have one, I just never wear it) I'd say that 99% of android apps don't need ndk.

      however the probability that someone interested in games has some ndk app or another is nearly 99% as well(gta & etc cool tech demo type of things need it.. that's why you're seeing them ported to both ios and android but not wp currently).

      technically though this particular java solution is only of interest to developers, however it seems like it's more reasonable than phonegap for example - this approach could get much better actual cross platform compatibility for complex ui's.

      but still.. swing.. ugh..

      --
      world was created 5 seconds before this post as it is.
    17. Re:Not entirely useful by ArhcAngel · · Score: 2

      How many high performant apps have you seen written in Java

      I haven't seen many but the one I have seen is pretty darned impressive.

      --
      "A person is smart. People are dumb, panicky dangerous animals and you know it." - K
    18. Re:Not entirely useful by dgatwood · · Score: 1

      Allow me to be the first to say, "Nooooooooooooooo!!!!!!"

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

    19. Re:Not entirely useful by Anonymous Coward · · Score: 1

      Java portability is a keen aspect of the language which sometimes gets overlooked.

      Overlooked ? It's the only damn reason it exists.

    20. Re:Not entirely useful by datavirtue · · Score: 1

      Is the release of this project an outcome of Oracle losing the lawsuit against Google for Android?

      --
      I object to power without constructive purpose. --Spock
    21. Re:Not entirely useful by binarylarry · · Score: 1

      Only on slashdot would a post this stupid get modded up.

      --
      Mod me down, my New Earth Global Warmingist friends!
    22. Re:Not entirely useful by Anonymous Coward · · Score: 1

      Shit loads. Mostly on the server side but there are some well performing Swing apps too.

    23. Re:Not entirely useful by owlstead · · Score: 3, Interesting

      That is certainly true, but most of the libraries that are used for core functionality of applications (at least if your application is not just a GUI or Android specific) are fully compatible with the Java runtime after compilation, and almost any third party lib can be compiled and run. The only problem is that many applications are too dependent on the GUI - in other words if they are badly written.

    24. Re:Not entirely useful by binarylarry · · Score: 1

      Who the fuck wants terrible J2ME apps on their smartphones?

      --
      Mod me down, my New Earth Global Warmingist friends!
    25. Re:Not entirely useful by gstoddart · · Score: 1

      I personally don't (like I said, I only ever launch them by accident and then close them) ... but for all I know thousands of actually useful apps are out there that people would be sad if went away. And, no, I have no idea of what they'd be. :-P

      I was just pointing out that asking why someone would want Java on their phone is a little late since it's been there for years already. My Motorola Razr had it back in '02 or so I think, my Krazr had it, my LG phone has it.

      --
      Lost at C:>. Found at C.
    26. Re:Not entirely useful by Anonymous Coward · · Score: 0

      Your post didn't get modded up, so seems your theory is wrong?

    27. Re:Not entirely useful by justforgetme · · Score: 0

      when it compiles, for iOS it will generate Obj-C

      So developing it will suck as much as Obj-C and performance will suck as much as Java?
      Or did I mix this up?

      --
      -- no sig today
  2. Appcelerator? by tapicer · · Score: 1

    How is this so different from what the Appcelerator people do with Javascript? They just abstract the SDK of each platform with a common API and then compile it to target each platform/language.

    1. Re:Appcelerator? by pipeep · · Score: 2

      It's more-or-less the same approach, the notable thing is that this time it's Java.

  3. finally by Anonymous Coward · · Score: 0, Flamebait

    The terrible performance of android, finally on ios.

    1. Re:finally by Desler · · Score: 0

      Awesome Java desktop applications? LOL good joke.

    2. Re:finally by Desler · · Score: 1

      You'd at least think their demo video wouldn't show a sluggish looking app. If it's that sluggish on such a toy app, one can only imagine the terrible performance of anything complex.

    3. Re:finally by LizardKing · · Score: 2

      I don't find Eclipse, NetBeans, SoapUI, Maple and Vuze to be jokes. In fact I use them every day and find them all to be "awesome".

    4. Re:finally by Anonymous Coward · · Score: 1

      Add SQuirreL to this list.

    5. Re:finally by Anonymous Coward · · Score: 1

      Not to mention all of the jetbrains apps (IntelliJ, PyCharm, PhpStorm, RubyMine, AppCode, etc)

    6. Re:finally by Karlt1 · · Score: 0

      I've used Eclipse and use Vuze. They both have the non-native Java stench.

    7. Re:finally by wed128 · · Score: 1

      I was thinking the same thing. Java is great for prototyping.

      Unfortunately, business people rarely know the difference between a software prototype and a product.

    8. Re:finally by Anonymous Coward · · Score: 1

      You must be the product of a modern "computer science" program. You got some vocational training in Java and were sent out into the world. It's not your fault, you just don't know any better.

    9. Re:finally by Desler · · Score: 2

      So programs that are slow to start up, eat memory like crazy and are pretty laggy and unresponsive? Yep, typical Java 'awesomeness'.

    10. Re:finally by Anonymous Coward · · Score: 0

      All of those suck. Notepad++, Vim, or Textmate are better.

    11. Re:finally by LizardKing · · Score: 1

      You must be the product of a modern "computer science" program. You got some vocational training in Java and were sent out into the world. It's not your fault, you just don't know any better.

      Nope. Started my career doing C, Perl and the odd bit of Sparc assembly having learned to program on an Atari ST in the late 1980s. Added C++ to the mix and then Java. Gradually the Java supplanted all the others, since the tools and library support are excellent.

    12. Re:finally by LizardKing · · Score: 1

      The guy sat next to me at work is using Eclipse and Spring Tool Suite (which is based on Eclipse) running on Windows. They look completely native to me, as you'd expect since they use SWT which renders the UI as native widgets. On my Linux machine Eclipse also looks native, since it uses the same GTK+ widgets to render the UI as the rest of the apps I typically use.

  4. Swing like API? by HornWumpus · · Score: 3, Funny

    Is that any API that basically doesn't work?

    --
    John McAfee 'It was like that time I hired that Bangkok prostitute; to do my taxes, while I fucked my accountant'
    1. Re:Swing like API? by Anonymous Coward · · Score: 0

      "It is the poor musician that blames his instrument"

      I was there when Swing made its first appearance (waaaay back in the Java 1.1 days) and I've never, ever had a problem with it. Except for that one mysterious button (JButton) in one app that wouldn't show but it was there, you could TAB into it, but that was when I was starting to use it. Not a single glitch since. And with Netbeans when they introduced Project Matisse for GUI editor... Loved it! (still do). I know Netbeans since before Sun bought them, it was a separate company with a product called "Netbeans developer".

    2. Re:Swing like API? by Desler · · Score: 1

      Except there are tools and instruments that are objectively shitty. Swing was terrible and looked like shit on all platforms without having to put in way more effort than it was worth.

    3. Re:Swing like API? by HornWumpus · · Score: 1

      When Sun won it's case against MS and MS had to include Sun's Java I thought MS should retaliate by including Swing and using it to render Sun's Logo. Image the logo rendering one pixel at a time, painfully slowly...

      --
      John McAfee 'It was like that time I hired that Bangkok prostitute; to do my taxes, while I fucked my accountant'
    4. Re:Swing like API? by GodfatherofSoul · · Score: 2

      Yeah, you don't know how to use it, so it must suck...

      --
      I swear to God...I swear to God! That is NOT how you treat your human!
    5. Re:Swing like API? by datavirtue · · Score: 1

      It takes few lines of code to make it appear native on any platform. There are many third party LNFs available, some for free. What you say is stupid, lame, and untrue.

      --
      I object to power without constructive purpose. --Spock
    6. Re:Swing like API? by Desler · · Score: 1

      Uh huh. So it was so easy that almost no one wrote these 'few lines of code'? Also what would have been the point of Standard Widget Toolkit if Swing was so great and native looking?

    7. Re:Swing like API? by Moochman · · Score: 1

      It took them a while to catch up with SWT after SWT came out. But they did actually manage to catch up. The one exception is the Swing file dialog, which was shit. But there's nothing stopping you from calling a native file dialog using a bit of hacking.

    8. Re:Swing like API? by Anonymous Coward · · Score: 0

      Swing is garbage. Whenever some Java clown says it is "like Swing," then I know it must suck ass.

    9. Re:Swing like API? by Anonymous Coward · · Score: 0

      No one knows how to use a Swing app I would like to use...

      Java is dead on the desktop because of Swing...

    10. Re:Swing like API? by ChunderDownunder · · Score: 1

      yeah, sun did themselves a disserve by not making the system look and feel the default.

  5. finally by Anonymous Coward · · Score: 0, Redundant

    Now the developers of many excellent Java desktop applications can bring their awesome sauce to iOS.

  6. No, thanks. by jcr · · Score: 0

    Java has always sucked on mobile devices. I have no need of it on iOS, and I will avoid any apps that use it.

    -jcr

    --
    The only title of honor that a tyrant can grant is "Enemy of the State."
    1. Re:No, thanks. by Culture20 · · Score: 1

      It was usable on wince. A java version of ssh1 was my only ssh option on my iPaq before I installed linux on it.

    2. Re:No, thanks. by Anonymous Coward · · Score: 1, Informative

      Java has always sucked on mobile devices.

      Based on that quote, I am quite sure you've never tried a Galaxy S3 and an iPhone running side by side, because the user interface on the S3 (running Java/Dalvik) is silkier and smoother than any iPhone.

    3. Re:No, thanks. by Anonymous Coward · · Score: 0

      Um.. you realize that every Android application is written in Java, and there are quite a few exceptional Android applications.

    4. Re:No, thanks. by gbjbaanb · · Score: 4, Interesting

      Um.. you realize that every Android application is written in Java, and there are quite a few exceptional Android applications.

      I think you'd be surprised at how many of those are written using the NDK. Download addon detector and look for yourself (its an app typically used to check an app doesn't include some dodgy notification-based ad networks, but it also shows you a load of other interesting info). 80% of the games I have on my phone are NDK based, they're the ones that are responsive and fast.

    5. Re:No, thanks. by Anonymous Coward · · Score: 1

      The last side-by-side comparison I did was with the Note when it first came out, and it was far from as smooth as the 6 month old iPhone 4s. iOS gives one full core priority to handle all UI events, and you can definitely tell the difference. The touch vs. swipe detection is far better than Android as well, with a fraction of the amount of drag length required for it to "figure out" that you are dragging. In my last test, it took about 1/4" of drag on an Android phone before it actually started scrolling compared to probably 1/16" on iOS. This leaves a "jerky" feeling while swiping between pages, and I don't think any amount of hardware will fix that.

      Whatever your complaints about Apple/iOS, UI is something that they have done exceptionally well at.

    6. Re:No, thanks. by oakgrove · · Score: 2

      I just ran Addon Detector agains all of the apps on my Xoom and you're right. Pretty much all of the well performing apps make use of the NDK. I just wonder what this means for platforms like FirefoxOS that rely on web technology for development.

      --
      The soylentnews experiment has been a dismal failure.
    7. Re:No, thanks. by Richard_at_work · · Score: 2

      I have used both side by side, and I dispute your claim - its smoother some of the time, its worse some of the time.

    8. Re:No, thanks. by gbjbaanb · · Score: 1

      I'd hope that people realise that web apps are fine for LoB apps, if you're entering data and getting results, these are fine. Some javascript libraries give fine performance for this kind of stuff (network latency considered), but when it comes to game-style performance, you need something more native. I wonder if webgl can step up to give us this kind of perf, but if it cannot then any webapp will just not be suitable for low-latency, fast response applications.

      Of course, this means WebGL libraries are needed to make development of these types of app practical.

      Of course, it depends on the framework you're using - WPF for example is a "native" platform for UI development, but it is worse than web apps for performance especially now MS is using Direct2D for IE rendering.

    9. Re:No, thanks. by Desler · · Score: 1

      Yeah and only needed double the CPU cores more RAM to do so.

    10. Re:No, thanks. by Anonymous Coward · · Score: 0

      Yeah and only needed double the CPU cores more RAM to do so.

      And can still do other things while handling those UI events, too.

  7. Java Stack Traces by doubleplusungodly · · Score: 5, Funny

    I hope iPhone users don't freak out when their Java apps suddenly start printing 500 line stack traces.

    --
    ---
    1. Re:Java Stack Traces by blackfrancis75 · · Score: 3, Insightful

      The fact that iDevice users in general aren't accustomed to error messages whatsoever brings up a philosophical question..
      If an App falls over and no one sees an error message, did it really fail?

    2. Re:Java Stack Traces by ddvlad · · Score: 0

      I hope iPhone users don't freak out when their Java apps suddenly start printing 500 line stack traces.

      Of course not, they will scroll flawlessly across the retina display.

      --
      Cornholio is a prophet.
    3. Re:Java Stack Traces by Anonymous Coward · · Score: 0

      YES.

  8. Tomorrows News: Oracle sues ex-employees.... by who_stole_my_kidneys · · Score: 2

    Im sure they will come up with something to sue them over, or if it gets big enough buy them out.

    1. Re:Tomorrows News: Oracle sues ex-employees.... by Sponge+Bath · · Score: 1

      Larry prefers the hand on approach of dressing up as a ninja and hunting them like animals.

    2. Re:Tomorrows News: Oracle sues ex-employees.... by binarylarry · · Score: 2

      That's almost correct, except Larry Ellison prefers to dress up like a woman and hide behind his lawyers.

      And then hunt them like animals.

      --
      Mod me down, my New Earth Global Warmingist friends!
  9. Over Steve Jobs' dead body they will by Culture20 · · Score: 0

    Too soon?

    1. Re:Over Steve Jobs' dead body they will by Tarlus · · Score: 1

      Too soon.

      --
      /* No Comment */
  10. cross platform by RockGrumbler · · Score: 2

    I'm always happy to see an attempt at making good cross platform frameworks. Good luck to the team.

  11. Compiles in the 'cloud' by Anonymous Coward · · Score: 0

    When it comes time to compile to native, it ships your code off to their servers to compile on Xcode. On one hand, that means that you can now write iOS apps on any platform. On the other hand, it means you are dead in the water if your internet goes down, their servers go down, they go out of business and if you continue to use it you will have to pay whatever they decide to charge for the service. You are adding another single point of failure.

    Appcelerator (Titanium) asks me to log in when I start it up, but I can still compile if I get disconnected.

    1. Re:Compiles in the 'cloud' by aled · · Score: 1

      Compiles to the cloud? I can see it,,,

      PHB: where is your code?
      Programmer: the cloud ate it

      --

      "I think this line is mostly filler"
  12. Wow! Major coverage from Forbes! by Anonymous Coward · · Score: 0

    This is the same outfit that predicted a slam dunk win for SCO over IBM! They're NEVER WRONG!

  13. About time, more like by Zocalo · · Score: 2

    So, given that tablets run pretty much the same OSs (Android, iOS) as many phones, you'd consider the potential for touch-enabled versions of the large number of Java front-ends to client server/systems on tablet PCs to be a "narrow use case"? The key phrase in there is "SaaS". Don't just think front-ends to enterprise scale client/server database systems; think Google Apps, and the many other Cloud based applications that are no doubt going to be developed for the growing tablet market.

    --
    UNIX? They're not even circumcised! Savages!
  14. Apple shunned other 3rd party app platforms like Flash because they wanted to lock down their walled garden, so I don't really think Apple wants Java on their platform.

    Java for web is dead, period. Any website that requires Java to view is a failure, on any platform, period.

    Java as a platform has been pretty much shunned by almost every other platform due to Oracle, Apple isn't going to let Java touch iOS and have them bastards hard on there case.

    Java the language can live on, but Java the platform has to die.

    --
    I haven't thought of anything clever to put here, but then again most of you haven't either.
    1. Re:Why? by gbjbaanb · · Score: 1

      well, yes.. but they also said that they shunned 3rd party app platforms because they are almost universally crap.

    2. Re:Why? by GodfatherofSoul · · Score: 0

      Spoken like the truly uninformed. There's tons of applet code out there, you probably don't notice it because they don't run slow like they did 15 years ago. I play Yahoo Games hearts almost daily and their applets have been around for probably 10 years.

      Simple test, disable Java in your browser to see how many Java web apps you're using that you never noticed.

      --
      I swear to God...I swear to God! That is NOT how you treat your human!
    3. Re:Why? by Anonymous Coward · · Score: 0

      I always notice when a site requires java because I don't have it installed, and it does not prevent me browsing the web at all. Only my bank requires it, for something obscure, because the interface is all html.

    4. Re:Why? by Richard_at_work · · Score: 2

      I've never had Java enabled in my browser - I've not noticed anything really missing from any websites I have ever visited. No big holes in the page, no missing functionality. Where are these wonderous hidden applets that you claim should be there?

    5. Re:Why? by gl4ss · · Score: 1

      apple doesn't care _how_ your app runs. it can have a vm bundled with it, you can develope even flash apps for ios.

      what they do care is that your app isnt' a gateway to running other apps.

      and thanks to my bank I have to use a horribly designed java applet every time I want to pay some bills - but even in that case the fact that it's horribly written piece of shit isn't java's fault at all, just the fucking stupid fucks who designed the system(no it doesn't add any real extra layer of security to the login process).

      --
      world was created 5 seconds before this post as it is.
    6. Re:Why? by bug_hunter · · Score: 1

      Not that I agree with much of your post (each to his own) but this product translates Java to the native platforms, there is no embedded VM. So this is Java the language and not Java the platform.

      --
      It's turtles all the way down.
  15. Oh, wow by Anonymous Coward · · Score: 0

    Do they hate iOS that much?

  16. Judging from the video by ashpool7 · · Score: 2

    http://www.youtube.com/watch?v=lkPt3jDW8Bs

    It's just about as slow as a translated hack. DDJ reports that they draw all their UI elements from scratch, which would explain it.

    Granted, the video could be choppy because their recording software is bad or they intentionally slowed it down, but I've had an iPhone 3G (the demo is a faster 3GS) and my apps aren't this slow.

  17. debian by Anonymous Coward · · Score: 0

    Could you please first take Java 7 license to somewhat compatible with Debian please?

  18. Separation of model and view by tepples · · Score: 3, Interesting

    Then write a Swing front-end, which runs on J2SE platforms, using the same application logic as your Android application. If your application's model and view are separated correctly, this shouldn't be hard.

  19. I don't care about Java for the UI on iPhones by GodfatherofSoul · · Score: 1

    I figure the native APIs will always rule, especially on resource limited mobile apps. Now, what I would like is the ability to link in Java libraries.

    --
    I swear to God...I swear to God! That is NOT how you treat your human!
  20. Just get a netbook by tepples · · Score: 1

    Then do like I do and shove a netbook in the bag with the game books.

  21. You can now by codepunk · · Score: 2

    You can now experience the same poor application performance and battery life of android devices. Download Now!

    --


    Got Code?
    1. Re:You can now by Anonymous Coward · · Score: 0

      Yeah, cause iPhones are well known for running days, if not weeks, on a single battery charge :rolls eyes:

    2. Re:You can now by Anonymous Coward · · Score: 0

      Android phones don't even work for one day. Java fail.

    3. Re:You can now by Kagetsuki · · Score: 1

      My Android IS11CA lasts a good 3 days in idle mode. Don't get me wrong, that's nothing fantastic, but it's well more than a day.

  22. Re:Wow! Major coverage from Forbes! by jellomizer · · Score: 1

    So based on your logic. Forbes makes a mistake so they always make a mistake?

    Go back to Logic 101.

    --
    If something is so important that you feel the need to post it on the internet... It probably isn't that important.
  23. We already have the original by StefanWiesendanger · · Score: 2

    Java basically started out as a clone of OPENSTEP - i.e., the very system/API that is the ancestor of OS X and iOS or Cocoa and Cocoa Touch respectively. So, when I can have the matured original, why would I want the clone?

    1. Re:We already have the original by Anonymous Coward · · Score: 0, Flamebait

      Java a clone of OPENSTEP? Really? Please elaborate.

    2. Re:We already have the original by StefanWiesendanger · · Score: 2

      Well clone wasn't well formulated. It drew heavy inspiration from OPENSTEP and Objective-C, which at that time was used by Sun as well (OpenStep for Solaris) but then ditched in favour of Java. Let's put it that way. :)

    3. Re:We already have the original by stephanruby · · Score: 2

      Java basically started out as a clone of OPENSTEP - i.e., the very system/API that is the ancestor of OS X and iOS or Cocoa and Cocoa Touch respectively.

      You mean (Java) Swing "basically started out as a clone of OPENSTEP".

      So, when I can have the matured original, why would I want the clone?

      So you could use a language like Java and have things like Garbage Collection I assume. And yes, my sentiments exactly, why use a halfway started clone of SmallTalk like Objective C when you could use Java, which is a halfway finished slightly better clone of SmallTalk instead?

    4. Re:We already have the original by StefanWiesendanger · · Score: 1

      I'm not a big fan of GC actually. Rather don't create garbage in the first place. That's why you have concepts like ARC in modern Objective-C implementations. This frees the programmer from most of the memory management (like GC) but without the runtime performance impact. I don't see how Java compares better to Obj-C here to be honest, not anymore at least. When Apple started to port OPENSTEP to the Mac, they actually even tried to implement Cocoa in Java or at least provide a Java-Objective-C bridge. Don't remember exactly how long they kept trying, but I guess they had good reasons to give up on it. It worked kinda ok with WebObject, but that's about it IIRC.

    5. Re:We already have the original by antsbull · · Score: 1

      You don't seem to realize that well written garbage collected programs have the potential to significantly outperform non-garbage collected ones - you should probably read up on garbage collection as your viewpoint is whacked.

    6. Re:We already have the original by StefanWiesendanger · · Score: 1

      I'm always happy to learn new things and improve or revise my knowledge. So, if you could point me to some relevant documents, I'd appreciate it greatly.

  24. FlexyCore by bigredswitch · · Score: 1

    FlexyCore tried the same thing a few years ago with iSpectrum: http://www.flexycore.com/ispectrum-overview.html .They even made the source available:http://www.in-the-box.org/ .

    --
    After about three months of relentless Willy action I reckon I'm now as good as when I was 10.
  25. This is all very sad by Anonymous Coward · · Score: 0

    If they wanted to work on something, they could be contributing to the Mono project instead.

  26. Mono? by Anonymous Coward · · Score: 0

    So there is already software that developers can get to port their code from desktop to Android, iOS, Windows phone. You pay for it, but it is already there with a langauge that Java developers will find familiar. In fact they had done some looking into porting the java parts of Android to C# and were claiming speedup.

  27. Minecraft by tlambert · · Score: 1

    It's the number one reason random people want Java on things. Their approach of compiling to native code, however, won't work with Minecraft without violating the Minecraft licensing agreement.

  28. yeah! by Anonymous Coward · · Score: 0

    They're taking another swing at it!

  29. Other way around please by Kagetsuki · · Score: 1

    Personally [I said personally so it's an opinion, damnit] I hate Java. I've been doing Android development for quite a while now and not a day goes by I don't wish Google would enhance the NDK to a practically usable level so I could code in C++. I've even gone out of my way to code some things in Ruby and Scala, but the implemetations just can't match native code and can't make use of enough of the tools for the platform to be "practical". I would have taken a full ObjectiveC port for Android any day over a set of Java porting tools for iOS.

    Also James Gosling is a disgusting, narcissistic lying jerk. He goes out of his way to tear up other languages but he patently does so by just making things up. Compare to other language fathers like Stroustrup, who's generally humble and constantly picking apart what could be done better in C++; and Matz who goes out of his way to study other languages, see what's great in them, and see if he can implement those features in Ruby, all the while doing so without trying to defame them. I've also found communities around langauges to have similiar traits as their creators.

  30. java, the cobol of the 00's by Anonymous Coward · · Score: 0

    someone had to do it sooner or later

  31. No, Thanks! by Anonymous Coward · · Score: 0

    Java have contamined every things.
    I hate java as hell !!!
    Please Apple, do not do that !!!