| Author |
Using SWINGS
|
Ranjith Kodikara
Greenhorn
Joined: Sep 03, 2002
Posts: 15
|
|
Many people say using java swing applications, client server apps are very slow. For a client server application, isnt java swing good? Ranjith
|
 |
somkiat puisungnoen
Ranch Hand
Joined: Jul 04, 2003
Posts: 1312
|
|
in my opinion, about Client - Server Clients are created by Swing API , it's not slow if clients are not complex. Goal of client-server solution : Bandwidth of network
|
SCJA,SCJP,SCWCD,SCBCD,SCEA I
Java Developer, Thailand
|
 |
Kathy Walrath
Author
Greenhorn
Joined: Apr 26, 2004
Posts: 13
|
|
|
Swing can be fast for complex apps too -- faster than apps with native components, actually -- if you take advantage of the separable model architecture. For example, if you have a mess of data changes, then it's much faster to make them to the data model (of a table or list, say) and then flush the data out to the component than it is to update the values in the component one by one. Some component architectures don't give you that option.
|
Kathy Walrath<br />author, <a href="http://java.sun.com/docs/books/tutorial/" target="_blank" rel="nofollow">The Java Tutorial</a><br />editor, <a href="http://javadesktop.org" target="_blank" rel="nofollow">javadesktop.org</a>
|
 |
 |
|
|
subject: Using SWINGS
|
|
|