Does Adobe Air Native process only allows to call .exe file only which runs a java class ?

And not accessing a certain method in the java class?

link|improve this question

60% accept rate
Question : Does Adobe's Native Process allows me to call Just a JAVA Class METHOD ? And not the .exe or .jar? – user1004413 Nov 10 '11 at 10:05
feedback

1 Answer

up vote 2 down vote accepted

You can run java applications by running java.exe with native process and passing appropriate arguments.
See Running java from cmd.

link|improve this answer
sorry if i was unclear, does it allow me to call just a Method in the java class? – user1004413 Nov 10 '11 at 10:05
That's not so easy. In principle you can write C and compile to a DLL which can be invoked by Adobe Air directly (version 4.6 onwards) and this C source invokes Java by JNI. – nalply Nov 11 '11 at 13:23
The arguments you pass to your .jar can indicate what to do; otherwise, you can write a native extension like nalply mentioned, which would be more difficult. – Jon Feb 13 at 19:10
feedback

Your Answer

 
or
required, but never shown

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