Is .Net/Mono or Java the better choice for cross-platform development? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T16:24:05Zhttp://stackoverflow.com/feeds/question/61559http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development18Is .Net/Mono or Java the better choice for cross-platform development?Hanno Fietz2008-09-14T19:00:24Z2009-03-09T10:43:56Z
<p>I lack the overview over both alternatives but I have pretty much freedom of choice for my next project. I'm looking for hard technical facts in the areas of</p>
<ul>
<li>performance (for example, I'm told Java is good for threading, and I hear the runtime code optimization has become very good recently for .Net)</li>
<li><i>real world</i> portability (it's both meant to be portable, what's Catch 22 for each?)</li>
<li>tool availability (CI, build automation, debugging, IDE)</li>
</ul>
<p>I am especially looking for what you actually experienced in your own work rather than the things I could google. My application would be a backend service processing large amounts of data from time series.</p>
<p>My main target platform would be Linux.</p>
<p><strong>Edit:</strong>
<em>To phrase my question more adequately, I am interested in the whole package (3rd party libraries etc.), not just the language. For libraries, that probably boils down to the question "how much less libraries are there for Mono than for Java"?</em></p>
<p><hr /></p>
<p>FYI, I have since chosen Java for this project, because it seemed just more battle-worn on the portability side and it's been around for a while on older systems, too. I'm a tiny little bit sad about it, because I'm very curious about C# and I'd love to have done some large project in it, but maybe next time. Thanks for all the advice.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61562#615628Answer by Brad Wilson for Is .Net/Mono or Java the better choice for cross-platform development?Brad Wilson2008-09-14T19:02:46Z2008-09-14T19:02:46Z<p>I think the question is phrased incorrectly. C# vs. Java is much less interesting in terms of cross-platform usage than is (a) which platforms you need to support, and (b) considering the core libraries and available third party libraries. The language is almost the least important part of the decision-making process.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61565#6156538Answer by Ben Collins for Is .Net/Mono or Java the better choice for cross-platform development?Ben Collins2008-09-14T19:05:57Z2008-09-14T19:05:57Z<p>Well....Java is actually more portable. Mono isn't implemented everywhere, and it lags behind the Microsoft implementation significantly. The Java SDK seems to stay in better sync across platforms (and it works on more platforms). </p>
<p>I'd also say Java has more tool availability across all those platforms, although there are plenty of tools available for .NET on Windows platforms.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61567#6156716Answer by jodonnell for Is .Net/Mono or Java the better choice for cross-platform development?jodonnell2008-09-14T19:10:14Z2008-09-14T19:10:14Z<p>Java actually is as cross-platform as everyone says it is. There's a JVM implementation for just about any mainstream OS out there (even Mac OS X, finally), and they all work really well. And there's tons of open source tools out there that are just as cross platform. </p>
<p>The only catch is that there are certain native operations you can't do in Java without writing some DLLs or SOs. It's very rare that these come up in practice. In all those cases, though, I've been able to get around it by spawning native processes and screen-scraping the results.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61571#6157118Answer by Rich B for Is .Net/Mono or Java the better choice for cross-platform development?Rich B2008-09-14T19:13:08Z2008-09-14T19:13:08Z<p>I actually develop in .NET, run all my tests first on Mono, and then on Windows. That way I know my applications are cross platform. I have done this very successfully on both ASP.NET and Winforms applications.</p>
<p>I am not really sure where some people get the impression Mono is so horrible from, but it certainly has done it's job in my cases and opinions.It is true you will have a bit of lag for the latest and greatest inventions in the .NET world, but so far, .NET 2.0 on Windows and Linux is very solid for me.</p>
<p>Keep in mind there are obviously many quirks to this, but most of them come from making sure you are writing portable code. While the frameworks do a great job of abstracting away what OS you are running on, little things like Linux's case sensitivity in paths and file names takes a bit of getting used to, as do things like permissions.</p>
<p>.NET is definitely very cross platform due to Mono based on my experiences so far.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61607#616073Answer by AlexeyMK for Is .Net/Mono or Java the better choice for cross-platform development?AlexeyMK2008-09-14T20:16:53Z2008-09-14T20:37:15Z<p>Java was designed to be cross-platform; C#/.Net wasn't. When in doubt, use the tool that was designed for your purpose.</p>
<p>EDIT: in fairness, .NET was designed to work on embedded/PC/Server environments, so that's SORT of cross-platform. But it wasn't designed for Linux.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61724#617244Answer by warren_s for Is .Net/Mono or Java the better choice for cross-platform development?warren_s2008-09-14T23:39:06Z2008-09-14T23:39:06Z<p>I'm going to say Java as well. If you look at it in terms of maturity, a lot more time and effort has been expended by Sun (and others) in getting the JVM to work on non-Windows platforms. </p>
<p>In contrast, Mono is definitely a second class citizen in the .Net ecosystem.</p>
<p>Depending on who your target customers are, you may also find there is real pushback against using Mono - does Novell offer the same kind of vendor support for Mono that you would get for Java or .Net on Windows?</p>
<p>If you were primarily targeting hosting your service on Windows, it would make sense to be considering this choice, but since you're targeting Linux primarily, it seems like kind of a no-brainer to me.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61810#618102Answer by George V. Reilly for Is .Net/Mono or Java the better choice for cross-platform development?George V. Reilly2008-09-15T02:48:54Z2008-09-15T02:48:54Z<p>There are other language choices too. I've become quite fond of Python, which works well on Windows, Linux, and Mac, and has a rich set of libraries.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61815#618151Answer by Oliver Jones for Is .Net/Mono or Java the better choice for cross-platform development?Oliver Jones2008-09-15T03:03:34Z2008-09-15T03:03:34Z<p>I would vote for Java being more portable than C#. Java definitely also has a very rich set of standard libraries. There is also a broad set of open source 3rd party libraries out there such as those provided by the Jakarta project (<a href="http://jakarta.apache.org/" rel="nofollow">http://jakarta.apache.org/</a>).</p>
<p>All the usual suspects exist for CI, Unit testing, etc too. Cross platform IDE support is also very good with the likes of Eclipse, Netbeans, IntelliJ IDEA etc.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61829#618293Answer by Kendall Helmstetter Gelner for Is .Net/Mono or Java the better choice for cross-platform development?Kendall Helmstetter Gelner2008-09-15T03:41:32Z2008-09-15T03:41:32Z<p>To add a bit more to the conversation, Java is more portable if you remain about one version behind - Java 5 still has many excellent features so you can wait for Java 6 and still have a lot of range in terms of language and libraries to develop with. The Mac is the primary platform that can take some time to catch up to the latest Java version.</p>
<p>Java also has an excellent <a href="http://www.jcp.org" rel="nofollow">standards body</a> that intelligently grows the platform based on input from many different companies. This is an oft overlooked feature but it keeps even new features working well across multiple platforms and provides a lot of range in library support for some esoteric things (as optional extensions).</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61852#618524Answer by Swaroop C H for Is .Net/Mono or Java the better choice for cross-platform development?Swaroop C H2008-09-15T04:19:35Z2008-09-15T04:19:35Z<p>I've been asking the same question off-late and IMHO, .NET/Mono seems to be a better option simply because <a href="http://www.mono-project.com/Companies_Using_Mono" rel="nofollow">Mono has a great track record for cross-platform desktop applications</a> (as opposed to Java) and of course, <a href="http://tirania.org/blog/" rel="nofollow">Mono is improving by leaps and bounds</a> these days.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61866#618662Answer by Giovanni Galbo for Is .Net/Mono or Java the better choice for cross-platform development?Giovanni Galbo2008-09-15T04:48:55Z2008-09-15T04:48:55Z<p>I think the answer is "it depends." Java runs on just about anything, but .NET/Mono are (IMHO) a better framework for the desktop. So I guess the answer really depends on what platforms you plan on targeting.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/264997#2649971Answer by damageboy for Is .Net/Mono or Java the better choice for cross-platform development?damageboy2008-11-05T12:27:29Z2008-11-05T12:27:29Z<p>While mono has it's <a href="http://stackoverflow.com/questions/18450/is-mono-ready-for-prime-time#264959">share of problems</a></p>
<p>I think it has a better cross-platform compatibility story esp. IF you have reliance on native platform invocation.</p>
<p>There are not enough words on stack-overflow to stress how much smoother it is to get something native called and executed in .NET/Mono on (at least in my experience 3...) multiple platforms vs. the equivalent Java effort...</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/265256#265256-2Answer by Brian G for Is .Net/Mono or Java the better choice for cross-platform development?Brian G2008-11-05T14:21:48Z2008-11-05T14:21:48Z<p>I think Mono is a hoax. I mean everyone talks about it, but who is actually using it. I see that someone is using it for testing to make sure it works in Mono but who actually runs .NET code on a linux box.</p>
<p>Mono is just there so that .NET developers ( myself included) can claim that just like Java its cross platform. </p>
<p>Obviously I am joking about it being a hoax but you get the idea.</p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/366366#3663661Answer by bane for Is .Net/Mono or Java the better choice for cross-platform development?bane2008-12-14T10:06:32Z2008-12-14T10:06:32Z<p>Linux - python, java, pike
$windoow - c# if it work :< </p>
http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/448793#4487933Answer by gatorhall for Is .Net/Mono or Java the better choice for cross-platform development?gatorhall2009-01-15T22:45:25Z2009-01-15T22:45:25Z<p>Java is a better choice for Cross-Platform development.</p>
<ul>
<li><p>Performance. Java and .Net have similar performance level due to the virtual machine, but JVM normally has better performance because of years and years optimization.</p></li>
<li><p>Library. Although this depends on your task, Java has much more open source or third party libraries available there. For server App, J2EE, Spring, Struts, etc. For GUI, although .Net provides Win32 layer API but this causes compatibility issues. Java has Swing, SWT, AWT, etc. It works in most cases.</p></li>
<li><p>Compatibility. This is the key issues that need to be considered when develop the cross-platform program. Two issue: first, platform compatibility. Java still wins since JDK is well maintained by single and original company Sun. Mono is not maintained by MS, so you have no guarantee yet for update compatibility. 2. Backward compatibility. Sun maintains a good reputation on their backward compatibility, although sometimes this seems too rigid and slows the pace.</p></li>
<li><p>Tools. Java has good cross-platform IDEs. Netbeans, Eclipse, etc. Most of them are free. VS Studio is good but only on Windows, and not cost a bit. Both of them provides good unit tests, debugs, profiles, etc.</p></li>
</ul>
<p>Hence I'd suggest that Java is a better choice. As a show case, there are some famous desktop cross-platforms apps developed by Java: Vuze, Limewire, BlogBridge, CrossFTP, not to mention those IDEs. As to .Net, I have limited knowledge on such success apps.</p>