Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Google Java Oracle The Courts

Google Backs Out of JavaOne 344

snydeq writes "Citing concerns about Oracle's lawsuit against it, Google has backed out of the upcoming JavaOne conference. 'Oracle's recent lawsuit against Google and open source has made it impossible for us to freely share our thoughts about the future of Java and open source generally,' Google's Joshua Bloch said in a blog post. The move may signal eventual fragmentation for Java, with Google conceivably splintering off the Java-like language it uses for Android."
This discussion has been archived. No new comments can be posted.

Google Backs Out of JavaOne

Comments Filter:
  • Loss of confidence (Score:5, Informative)

    by Duncan J Murray ( 1678632 ) on Saturday August 28, 2010 @08:37AM (#33402378) Homepage

    Looks like we're seeing a new loss of confidence in Java, much like the loss of confidence in mono, for which patent concerns stunted its uptake.

    So where to next?

    And where is my replacement for open office?

  • I'm glad (Score:1, Informative)

    by airfoobar ( 1853132 ) on Saturday August 28, 2010 @08:47AM (#33402412)
    The similarity of android's dev language with Java is only superficial. It's not really Java by a long way.

    Now that Oracle's Java is showing its true colours and proving it's not really open source, I see no reason for Google (or any other company that backs open source) to support it.

    This will lead to Java's death, and that's a good thing because it's WAY over-due.
  • Re:I'm glad (Score:5, Informative)

    by TheRaven64 ( 641858 ) on Saturday August 28, 2010 @09:00AM (#33402492) Journal

    The similarity of android's dev language with Java is only superficial

    You mean, aside from the fact that they are exactly the same language and both provide a large number of the same classes in the java.* namespace, they are completely different?

  • by TheRaven64 ( 641858 ) on Saturday August 28, 2010 @09:40AM (#33402684) Journal
    Ximian, now Novell, did fork OO.o. You can get their fork at http://www.go-oo.org/ [go-oo.org]. The only reason that Sun maintained control over OO.o was that they provided most of the code. Last statistics I saw for OO.o contributions were around 80% Sun, 15% Novell, 5% everyone else. If Oracle doesn't keep up the contribution rate, then other forks will overtake theirs and be regarded as the main version. A lot of Linux distributions already include the Novell fork, rather than the main branch, as their OpenOffice.org package.
  • Re:I'm glad (Score:3, Informative)

    by John Hasler ( 414242 ) on Saturday August 28, 2010 @10:17AM (#33402884) Homepage

    Oracle is sueing for patent infringement, not trademark infringement.

  • by Anonymous Coward on Saturday August 28, 2010 @11:12AM (#33403270)

    Where have the ever called it Java?
    The platform isn't called Java, the VM isn't called Java, and the language only says "Java like".

  • The only difference here is that Sun sued over calling something "Java" that wasn't exactly Java. Oracle is doing something a bit deeper in that they are saying that Google can't fork the language even if they call it something different.

    I think I've missed something - last I saw, Google isn't calling it something different? If they were, I can't see how this would be a problem. But when I look at the Android Fundamentals [android.com] page, this is the first thing I see (emphasis added):

    Android applications are written in the Java programming language. The compiled Java code — along with any data and resource files required by the application — is bundled by the aapt tool into an Android package, an archive file marked by an .apk suffix. T

    So where do you see that they're not calling it Java?

  • Re:!Good (Score:2, Informative)

    by Anonymous Coward on Saturday August 28, 2010 @11:29AM (#33403370)
    That's a technique, not an algorithm.
  • by mmacdona86 ( 524915 ) on Saturday August 28, 2010 @12:17PM (#33403654)
    That's the whole case. There's no Java license or trademark involved.

    Two enormous differences with the Sun/Microsoft case: 1-- Everything Google built for Android is open-sourced; 2-- No Java license is involved

    Google built a VM called Dalvik. Like the Java and .Net VM's, it can run code written in a number of languages, including the Java language. That patents at issue are not related specifically to the Java language, but they do cover common techniques in VM implementation, and if upheld could threaten other VM implementations.

  • Re:!Good (Score:3, Informative)

    by mark-t ( 151149 ) <markt AT nerdflat DOT com> on Saturday August 28, 2010 @12:42PM (#33403826) Journal
    No, you may use pointer arithmetic to *IMPLEMENT* an algorithm more efficiently, but that doesn't make it a new or better algorithm, it just makes it a more efficient implementation.
  • by Joce640k ( 829181 ) on Saturday August 28, 2010 @12:45PM (#33403836) Homepage

    They're just as likely to be using COBOL but most people regard that as 'dead'.

  • Parent is basically correct. However, pedantically, Dalvik does not, in general, run programs written in the Java language. The language is defined not just by its syntax, but also by a certain set of standard libraries being present and implemented according to Sun/Oracle specification. Dalvik doesn't support all of those, and hence doesn't run Java.

    However, Dalvik does run a very Java-like language. One that has all the syntax of Java, and *many* of the same libraries. Moreover (as everyone here knows, I'm sure), programs compiled by 'javac' to .class file may be converted to Dalvik executables (as long as they contain only the subset of Java that Dalvik supports).

    It would be proper to prevent Google from claiming that Android "Runs Java"... but then, I'm pretty sure they never claimed that to start with. Indeed mostly--almost entirely--it's claims about patents that should never have been granted, or really just about lawsuits to try to mess up competition and technical progress just for the sake of disruption (I doubt Oracle actually cares that much about the outcome, it's mostly FUD).

  • Re:!Good (Score:3, Informative)

    by ToasterMonkey ( 467067 ) on Saturday August 28, 2010 @05:52PM (#33405486) Homepage

    Call me back when your operating system is written in Java. Oh wait, Sun tried that - another failure.

    You're an idiot.

  • Re:I'm glad (Score:3, Informative)

    by TheRaven64 ( 641858 ) on Sunday August 29, 2010 @04:56AM (#33407774) Journal

    Same language? C# and Javascript have nearly identical syntax

    Nearly identical is not identical. At the language level, the language that Google uses is identical to Java, both in terms of syntax and semantics. C# is close to Java, but is clearly a distinct language. JavaScript has vaguely Java-like syntax, but Self-like semantics (while Java has Smalltalk-like semantics).

    Some of the same classes? Look at how many other languages have analogous classes in their libraries. It's irresponsible not to provide string utilities, for one.

    There is a difference between similar and identical. Google's Java, being the same language as Sun's Java, has namespaces. In these namespaces, there are classes. Android ships with a large number of classes in the java.* namespace, which have identical names and methods to the classes in the java.* namespace.

    All vaguely OO languages have some kind of string class. Java has java.String, Java.StringBuffer. Objective-C has NSString and NSMutableString. C++ has std::string. Google's language that you are claiming is not Java has... java.String, Java.StringBuffer. All classes in Google's not-Java-really language inherit from... java.Object.

    When two languages have identical syntax, identical semantics, and an identical core standard library, claiming that they are not the same language is a bit difficult. Rather than just wave your hands, maybe you could point to somewhere where Java and Google's language are actually different.

  • by mark-t ( 151149 ) <markt AT nerdflat DOT com> on Sunday August 29, 2010 @12:07PM (#33409130) Journal
    You misunderstand what I'm getting at. Pointer arithmetic may make an implementation faster, but that doesn't make the algorithm itself any faster. A faster algorithm is one that has a lower speed complexity, not one that simply runs more quickly than another. I'm not saying that pointer arithmetic isn't useful, only that it's superfluous to designing faster algorithms. At best, it's an implementation detail.

"God is a comedian playing to an audience too afraid to laugh." - Voltaire

Working...