Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is Java equivalent for LINQ?

share|improve this question
10  
You do realize that LINQ is encumbered with patents don't you? [Some of LINQ Patents][1] [1]: faqs.org/patents/… – Coyote21 Jan 31 '11 at 18:08
4  
Those appear to be LINQ to SQL. – SLaks Feb 9 '11 at 16:06
7  
Check this one: github.com/nicholas22/jpropel-light, real example:new String[] { "james", "john", "john", "eddie" }.where(startsWith("j")).toList().distinct(); – NT_ Oct 8 '11 at 10:18
10  
This question and it's chosen answer are hilarious. Upvoting both – TheIronKnuckle Mar 22 '12 at 1:09
Java ppl still use multiple statements and foreach loops which can be solved by Linq... – WYSIWYG May 4 '12 at 14:25
show 2 more comments

22 Answers

up vote 219 down vote accepted

There is nothing like LINQ for Java.

share|improve this answer
71  
Yet. (oh why 10 chars...) – 280Z28 Aug 1 '09 at 18:57
6  
is there something in the plan? integrated into the language? IS ther a JCP number? etc etc. – Cheeso Aug 1 '09 at 18:58
3  
Very true, although a big part of what makes LINQ sooo nice is how deeply it is integrated into the language and compiler – AgileJon Aug 1 '09 at 18:59
7  
Sorry, the 'very true' was meant for 280Z28. I don't know if there is a JCP for it. LINQ necessitated several changes to the C# language, given the speed the JCP works at I wouldn't hold my breath. – AgileJon Aug 1 '09 at 23:14
3  
This is not correct. See: stackoverflow.com/questions/10879761/… – Scooterville Jun 4 '12 at 10:26
show 7 more comments

You can select the items in a collection (and much more) in a more readable way by using the lambdaj library

http://code.google.com/p/lambdaj/

It has some advantages over the Quaere library because it doesn't use any magic string, it is completely type safe and in my opinion it offers a more readable DSL.

share|improve this answer
nice find! I'm definitely going to play with this. – KitsuneYMG Jan 12 '11 at 3:57
1  
This is nice, but it is a far cry from being about to build a query and execute it again sql, xml, collection, etc. – bytebender Jun 8 '11 at 23:40
why might i be getting java.lang.ExceptionInInitializerError when using lambdaj select on a custom class in my android project? – towpse Aug 20 '12 at 18:02

I developed a alternate solution, Coollection. Is simple and focused on the most used actions of iteration over Collections.

Use like that:

  from(people).where("name", eq("Arthur")).first();
  from(people).where("age", lessThan(20)).all();
  from(people).where("name", not(contains("Francine"))).all();
share|improve this answer
48  
+1 for the product name! :) – Lukas Eder Dec 27 '10 at 21:09

Lambdas are coming to Java 8 scheduled for the summer of 2013 in the form of JSR-335 - Lambda Expressions for the JavaTM Programming Language

I'm not fully aware of how much support will be added to the collections library, though one example provided does demonstrate a similar sortBy ability. Keep an eye out for changes made to Brian Goetz articles relating to lambdas and you will keep up to date with programming styles which will be available for JDK8. There are great examples here, also check out the JSR's above to get further examples.

UPDATE: The State of the Lambda - Libraries Edition has been updated once again which now covers streams, internal iteration, short-circuiting and constructor references. I advise you all to read the new document.

share|improve this answer
Good hint! (+1) – Nico Aug 12 '11 at 16:18
Weren't lambdas also scheduled to be in Java 7? What happened to that? – BlueRaja - Danny Pflughoeft Oct 11 '11 at 18:12
5  
Oracle bought Sun (tongue in cheek). Java 7 was taking far too long (5 years) so lambdas missed the short-list, this was rather disappointing to the masses. That being said Oracle does look like it's picking up the ball and I think we're scheduled for Java 8 October next year. – Brett Ryan Oct 11 '11 at 23:21
1  
Note that the State of the Lambda has been updated once again which now covers streams, internal iteration, short-circuiting and constructor references. I advise you all to read the new document. – Brett Ryan Nov 29 '12 at 3:37
Note the release has been pushed to March 2014, reasons are covered on the jdk8-dev mailing list and more extensively on Mark Reinhold’s blog. – Brett Ryan Apr 24 at 4:46
show 1 more comment

You won't find an equivalent of LINQ unless you use the javacc to create your own equivalent.

Until that day when someone finds a viable way to do so, there are some good alternatives, such as

share|improve this answer

there is a project called quaere

its a java framework which adds abilitiy to query collections

share|improve this answer
2  
Quaere looks like it provides a bit of what LINQ provides, but the question is for an 'equivalent' – AgileJon Aug 1 '09 at 19:03
4  
So it's something like LINQ, if not a direct equivalent ? That at least sounds helpful – Brian Agnew Aug 1 '09 at 23:26
1  
@AgileJon: If he really meant equivalent, he wouldn't have asked. He could have typed from x in xs select x and found out the answer (no). – kizzx2 Jan 11 '11 at 15:04

There are many LINQ equivalents for Java, see here for a comparison.

For a typesafe Quaere/LINQ style framework, consider using Querydsl. Querydsl supports JPA/Hibernate, JDO, SQL and Java Collections.

I am the maintainer of Querydsl, so this answer is biased.

share|improve this answer
3  
The "similar frameworks" link is dead. Do you still have an equivalent page? – Lukas Eder Feb 10 '12 at 9:14

A more C#-like solution is JaQue. It has both: linq-to-object/xml functionality and a provider model with API very similar to MS LINQ. A simple JPA (Hibernate) provider is implemented. After Java will get closures, it will be elegant as well.

share|improve this answer
1  
Can I use JaQue to read/write XML files in the same way we can do with LINQ? – Khurram Majeed Feb 15 at 16:28

See SBQL4J. It's type-safe strong query language integrated with Java. Allows to write complicated and multiply nested queries. There is a lot of operators, Java methods can be invoked inside queries so as constructors. Queries are translated to pure Java code (there is no reflection at runtime) so execution is very fast.

EDIT: Well, so far SBQL4J it's the ONLY extension to Java language which gives query capabilities similar to LINQ. There are some interesting project like Quaere and JaQue but they are only API's, not syntax / semantics extension with strong type safety in compile time.

share|improve this answer
3  
You may want to mention your role in the project. – Thorbjørn Ravn Andersen Oct 18 '11 at 19:07

you can use scala, it is similar in syntax and it's actually probably more powerful than linq.

share|improve this answer
Esp. Scala's "for comprehensions". – Nico Nov 20 '11 at 20:31

Just to add another alternative: Java 6 does have a solution for type-safe database queries using the javax.persistence.criteria package.

Though i must say that this is not really LINQ, because with LINQ you can query any IEnumerable.

share|improve this answer
Yup it's a JPA API. Far from LINQ, but better than nothing. And one can say it's based loosely on Hibernate Criteria API. See: docs.jboss.org/hibernate/core/3.6/reference/en-US/html/… – Hendy Irawan Dec 28 '10 at 2:47

There's a very good library that you can use for this.

Located here: https://github.com/nicholas22/jpropel-light

Lambdas won't be available until Java 8 though, so using it is a bit different and doesn't feel as natural.

share|improve this answer

For basic functional collections, Java 8 has it built in, most of the major non-Java JVM languages have it built in (Scala, Clojure, etc), and you can get add on libs for earlier Java versions.

For full language integrated access to a SQL database, Scala (runs on the JVM) has Slick

share|improve this answer

JaQu is the LINQ equivalent for Java. Although it was developed for the H2 database, it should work for any database since it uses JDBC.

share|improve this answer

Maybe not the answer you're hoping for, but if some part of you code need heavy work on collections (searching, sorting, filtering, transformations, analysis) you may take in consideration to write some classes in Clojure or Scala.

Because of their functional nature, working with collections is what they're best at. I don't have much experience with Scala, but with Clojure you'd probably find a more powerful Linq at your fingertips and once compiled, the classes you'd produce would integrate seamlessy with the rest of the code base.

share|improve this answer
Groovy or jRuby would also be viable candidates, since they all have a much more functional nature. – cdeszaq Dec 20 '11 at 14:38

It sounds like the Linq that everyone is talking about here is just LinqToObjects. Which I believe only offers functionality that can already be accomplished today in Java, but with really ugly syntax.

What I see as the real power of Linq in .Net is that lambda expressions can be used in a context requiring either a Delegate or an Expression and will then be compiled into the appropriate form. This is what allows things like LinqToSql (or anything other than LinqToObjects) to work, and allows them to have a syntax identical to LinqToObjects.

It looks like all of the projects referred to above are only offering the capabilities of LinqToObjects. Which makes me thing that LinqToSql-type functionality is not on the horizon for Java.

share|improve this answer

For LINQ (LINQ to Objects), Java 8 will have something equivalent, see Project Lambda.

It has Enumerable's LINQ to Objects extensions like stuffs. But for more complicated LINQ things like Expression and ExpressionTree (these are needed for LINQ to SQL and other LINQ providers if they want provide something optimized and real), there is not any equivalent yet but maybe we will see that in future :)

But I don't think there will be anything like declaratives queries on Java in future.

share|improve this answer

An anonymous user mentioned another one, Diting:

Diting is a class library provides query capabilities on collections through chainable methods and anonymous interface like Linq in .NET. Unlike most of other collection library those are using static methods need iterate whole collection, Diting provides a core Enumerable class whitch contains deffered chainable methods to implement query on collection or array.

Supported Methods: any, cast, contact, contains, count, distinct, elementAt, except, first, firstOrDefault, groupBy, interset, join, last, lastOrDefault, ofType, orderBy, orderByDescending, reverse, select, selectMany, single, singleOrDefault, skip, skipWhile, take, takeWhile, toArray, toArrayList, union, where

share|improve this answer

There is no such feature in java. By using the other API you will get this feature. Like suppose we have a animal Object containing name and id. We have list object having animal objects. Now if we want to get the all the animal name which contains 'o' from list object. we can write the following query

from(animals).where("getName", contains("o")).all();

Above Query statement will list of the animals which contains 'o' alphabet in their name. More information please go through following blog. http://javaworldwide.blogspot.in/2012/09/linq-in-java.html

share|improve this answer

I tried guava-libraries from google. It has a FluentIterable which I think is close to LINQ. Also see FunctionalExplained.

    List<String> parts = new ArrayList<String>();  // add parts to the collection.      
    FluentIterable<Integer> partsStartingA = FluentIterable.from(parts)
                                                  .filter(new Predicate<String>(){
                                                      @Override
                                                      public boolean apply(final String input)
                                                      {
                                                          return input.startsWith("a");
                                                      }
                                                  })
                                                  .transform(new Function<String, Integer>()
                                                             {
                                                                @Override
                                                                public Integer apply(final String input)
                                                                {
                                                                    return input.length();
                                                                }
                                                             }
                                                  );

Seems to be an extensive library for Java. Certainly not as succinct as LINQ but looks interesting.

share|improve this answer

There was the programming language Pizza (a Java extension) and you should have a look to it. - It uses the concept of "fluent interfaces" to query data in a declarative manner and that is in principle identical to LINQ w/o query expressions (http://en.wikipedia.org/wiki/Pizza_programming_language). But alas it was not pursued, but it would have been one way to get something similar to LINQ into Java.

share|improve this answer
1  
Sure it was pursued, just not under the name "Pizza". The generics from Pizza got merged into GJ, which then became the Java 1.3 reference compiler (though generics were hidden behind a flag until 1.5). In the meantime... the rest of the ideas, plus a few extra, became Scala. – Kevin Wright Aug 3 '12 at 15:38
Thanks for that info, of course Scala is a good point here. But these abilities where not integrated into the Java language. You could use the Scala language to implement the nice query code and use the resulting binary then from Java. – Nico Aug 3 '12 at 17:03

Check out tiny-q. (Note that you currently can't download it.)

Here's an example adapted the above link:

First we need a collection of some data, let's say a set of strings

String[] strings = { "bla", "mla", "bura", "bala", "mura", "buma" };

Now we want to select only the strings which start with "b":

Query<String> stringsStartingWithB = new Query<String>(strings).where(
    new Query.Func<String, Boolean>(){
        public Boolean run(String in) {
            return in.startsWith("b");
        }
    }
);

No actual data moved copied or anything like that, it will get processed as soon as you start iterating:

for(String string : stringsStartingWithB ) {
    System.out.println(string);
}
share|improve this answer
4  
Could you write a short description of it? – Pubby Nov 24 '11 at 23:49
3  
Ooh look - a URL. I wonder what's at the other end of it. – Poldie Jan 12 '12 at 10:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.