Is it possible to put interface created with JavaFX on C code? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is it possible to put interface created with JavaFX on C code?

I need to connect Server and Client code written in C with user interface implemented using JavaFX. Is it possible?

25th Nov 2018, 12:44 PM
Azizbek Avazov
Azizbek Avazov - avatar
1 Answer
+ 4
Everything is possible, but it is likely more work than recoding the interface in a GUI meant for C. JavaFX is implemented in JVM. It appears that JVM is written in C++ so your C code could be linked to the C++. However, to pass information back and forth would take a lot of learning the JVM code so you can modify it to talk to your C code at the right time & place.
30th Nov 2018, 4:39 PM
John Wells
John Wells - avatar