I use JNI
Main Topics
Browse All TopicsHi.
I need execute some native function from dll. It's ok.
But this function results printed in console.
I need have access for these results for parsing and analysing from my java program.
Another problem. When I execute this function, I can see output results only when my java program terminated.
Thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
> How does the output stream of the dll work? Can you not obtain it somehow and then read the data >from Java?
Yes. I cant get dll output from java.
And have not dll sorce code and specification. I dont know how dll function work.
This function return boolean result
result = FooFunction( some parameters);
and print some results on OS standart output (console).
I need read this results from my java program after function executed.
As a quick 'n dirty hack you could use dup2 at the C side to redirect the output to the input stream and then read it from System.in in Java.
dup2 (STDOUT_FILENO, STDIN_FILENO);
You'll need to include "unistd.h" and maybe "fcntl.h" as well (extern C if you use C++).
But this will also redirect everything written to System.out to System.in.
Business Accounts
Answer for Membership
by: girionisPosted on 2004-07-01 at 04:55:18ID: 11445617
How do you execute the native function? Is it through JNI or are you using the Runtime class?