Log in

View Full Version : Labview and Java


chsrobotics3283
13-03-2010, 15:02
Is there a way to convert Labview data into java? or java data into labview? this method can help us out a lot next year, if I can get a way to convert data. So that our team can use two programs interchangeably.

TubaMorg
13-03-2010, 15:35
If by "data" you mean source code, then the answer is no, not directly. LabView and Java are completely different paradigms. You can, however, possibly convert your program to psuedocode that can be translated to either java or Labview.

chsrobotics3283
13-03-2010, 20:33
How do you do that?

TubaMorg
13-03-2010, 21:36
Psuedocode is just a simplified representation of a program that describes the logical flow of your code. Since programming is a logical exercise, meeting the requirements of psuedocode is achievable regardless of the actual programming language. Look here for more information:
http://en.wikipedia.org/wiki/Pseudocode

There is no magic way to generate psuedocode other than to write it. You will notice that examples resemble Java or C++ in form, however, the logic can still be applied to LabView.