View Single Post
  #9  
Old 10-13-2005, 09:34 AM
Prod1gy Prod1gy is offline
Junior Member
 
Join Date: Oct 2003
Posts: 4
Default Re: Swing GUI calling C++... Is this efficient?

PartyMine is implemented in this exact same way. I have a Java Swing client and use JNI to talk to a core DLL that does the low level Win32 calls that Java cannot do.

If you don't need to do very windows specific stuff I would not use C++ at all.

JNI can get slow if you are moving large pieces of data between the two.
Reply With Quote