vote up 0 vote down star

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:

  1. A list of benefits to be had from moving to Winforms / WPF from Swing,
  2. 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).
flag

Your major argument would probably be moving from Java to C# windows only. There are other Java GUI toolkits such as SWT that will use the native operating system GUI elements. – Kekoa May 20 at 17:03
1  
Oh yeah, btw, Swing is terrible, SWT is the way to go in my mind. – Kekoa May 20 at 17:03

5 Answers

vote up 1 vote down
  1. Performace & startup time. You just can't compare Swing to Winforms/WPF in the performace/startup time aspect.

  2. 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.

link|flag
vote up 1 vote down

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.

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.

link|flag
vote up 0 vote down

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.

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.

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.

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?

link|flag
vote up 0 vote down

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?

If the answer either to these questions is yes then you should probably stick with Swing.

link|flag
vote up 0 vote down

1) It is easier to make a Winforms app feel like a Windows app. Java applications usually feel "funny" if you aren't careful.

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.

You have not provided any reasons why you plan to make your proposal.

link|flag

Your Answer

Get an OpenID
or

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