What advantages are to be had by using Java+Swing over C#+WinForms/WPF? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T01:38:13Z http://stackoverflow.com/feeds/question/889097 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/889097/what-advantages-are-to-be-had-by-using-javaswing-over-cwinforms-wpf 0 What advantages are to be had by using Java+Swing over C#+WinForms/WPF? oo 2009-05-20T16:59:07Z 2009-05-21T13:48:49Z <p>There is a group here using Java, server-side and client-side, with Swing for the client UIs. I plan to suggest that they change the front end to C# and WinForms or WPF, but I want to come prepared with:</p> <ol> <li>A list of benefits to be had from moving to Winforms / WPF from Swing,</li> <li>A list of Swing benefits that might get thrown back at me over using WinForms / WPF (the only one I can think of off the top of my head is the ability to share more code across server and client due to being the same language - given the fact that the server side will stay Java).</li> </ol> http://stackoverflow.com/questions/889097/what-advantages-are-to-be-had-by-using-javaswing-over-cwinforms-wpf/889120#889120 1 Answer by razenha for What advantages are to be had by using Java+Swing over C#+WinForms/WPF? razenha 2009-05-20T17:06:52Z 2009-05-20T17:06:52Z <ol> <li><p>Performace &amp; startup time. You just can't compare Swing to Winforms/WPF in the performace/startup time aspect.</p></li> <li><p>Really don't know... if you have a high qualified Java team that does not know .Net APIs, stick to Swing, otherwise, don't think twice... Use Winforms. About "the ability to share more code across server and client due to being the same language", don't bother... there is zillions of ways to make two different applications from different languages that each other.</p></li> </ol> http://stackoverflow.com/questions/889097/what-advantages-are-to-be-had-by-using-javaswing-over-cwinforms-wpf/889124#889124 1 Answer by Reed Copsey for What advantages are to be had by using Java+Swing over C#+WinForms/WPF? Reed Copsey 2009-05-20T17:07:34Z 2009-05-20T17:07:34Z <p>1) Swing stinks. (Almost just kidding, but really, in my opinion, it's pretty awful.) Even if you're going to develop in Java, use SWT or some other decent looking/behaving toolkit. Moving to Windows Forms or WPF will (potentially) give you a lot more powerful user interface options on Windows, but only on Windows.</p> <p>2) You're tying yourself to Windows, and losing the cross platform nature of Java+Swing. You're potentially losing some ability for shared code. You're having to redevelop in non-java, which may mean a lack of experience/training/knowledge on the part of other developers on your team. </p> http://stackoverflow.com/questions/889097/what-advantages-are-to-be-had-by-using-javaswing-over-cwinforms-wpf/889258#889258 0 Answer by unknown (google) for What advantages are to be had by using Java+Swing over C#+WinForms/WPF? unknown (google) 2009-05-20T17:39:25Z 2009-05-20T17:39:25Z <p>The performance of the GUI should be faster with a .NET winform app compared to a Swing app running on Windows. It's not really a huge difference at this point for most apps though, computers these days can run Java pretty fast. </p> <p>Either way you would still be talking to the Java backend code. Depending on what they've done you may be better off just sticking with the Swing front end. </p> <p>If it's an option you should think about a web front end. If it can be made in XHTML/Javascript/CSS, you would retain the cross platform benefits that the Java GUI gives you.</p> <p>But really, you need to think about why you want to change to Winforms instead of Java. Is there something about the existing Java app that you don't like that would be better and worth the cost of redeveloping in another language? Is it something that can be fixed without a full rewrite?</p> http://stackoverflow.com/questions/889097/what-advantages-are-to-be-had-by-using-javaswing-over-cwinforms-wpf/889740#889740 0 Answer by Tom Martin for What advantages are to be had by using Java+Swing over C#+WinForms/WPF? Tom Martin 2009-05-20T19:20:54Z 2009-05-20T19:20:54Z <p>Do you have any custom components which would be a pain to migrate from Swing to .net? Do you have staff that are expert at developing custom Swing components (Java2D expertise, familiarity with Swings input subsystem etc.) who know little about WinForm custom development?</p> <p>If the answer either to these questions is yes then you should probably stick with Swing.</p> http://stackoverflow.com/questions/889097/what-advantages-are-to-be-had-by-using-javaswing-over-cwinforms-wpf/893025#893025 0 Answer by Brian for What advantages are to be had by using Java+Swing over C#+WinForms/WPF? Brian 2009-05-21T13:48:49Z 2009-05-21T13:48:49Z <p>1) It is easier to make a Winforms app feel like a Windows app. Java applications usually feel "funny" if you aren't careful.</p> <p>2) Everything you are programming is using Java. Having one component that is not Java means that the project is harder to work with. Overall maintenance will also be more annoying. Currently, everyone on your project team needs to know Java only in order to be able to work with anyone else on your project team. From a recruiting and maintainability perspective, this is convenient. Personally, I be against switching the GUI unless you were getting some other benefit out of it.</p> <p>You have not provided any reasons why you plan to make your proposal.</p>