Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've created a class which processes files and if it encounters certain specific errors, it outputs relevant error messages to the error stream.

I am working on another class that needs to access these error messages. I'm not sure how to do this. I am a beginner in Java programming. Based on my limited knowledge, I thought that my two options would be to either call the main method of the first class (but I don't know how I would get the error messages in this case) or to execute the compiled class and access the messages through the getErrorStream() method of the Process class. But, I am having trouble with the system deadlocking or possibly not even executing the exec command, so I'm not sure how implement the second case either.

share|improve this question

2 Answers

I'm not quite sure what you're asking here, but a potential problem with your code is that you're not reading from the process' stdout. Per the Process API, "failure to promptly ... read the output stream of the subprocess may cause the subprocess to block, and even deadlock." Is this the "trouble" you mentioned?

Edit: So yeah, you can either do what you're doing, but be sure to read both the error stream and the output stream (see my comment), or you could just call the main method directly from your code, in which case the error output will be written to System.err. You could use System.setErr() to install your own stream that would let you get what's written to it, but keep in mind that any error output from your own app--the one that's running the other app--will also show up here. It sounds like spawning a separate process, like you're already doing, is what you want.

share|improve this answer
I think that might be the error. When executing that part of the code, the program just gets stuck and goes on endlessly without terminating. I'm not sure how to fix it though. I guess in its most basic form, my question is about how I can execute the first java class and access its error stream messages from the second java class. – dpryor Oct 2 '11 at 1:05
Yes, that's what it looks like when you don't consume the output stream. You removed the code, and I don't remember exactly what it looked like, but it was calling Process.getErrorStream() at one point, and you were reading from that continually while you waited for the process to exit. You have to do the same for Process.getOutputStream(). Even if you just ignore what you read from it, you have to do it or risk having the process block indefinitely. – Ryan Stewart Oct 2 '11 at 1:39
Also updated my answer – Ryan Stewart Oct 2 '11 at 1:43

You can't build modularity based on many little programs with a main method. You have to make blocks of function as classes that are designed to be called from elsewhere -- and that means returning status information in some programmatic fashion, not just blatting it onto System.err. If it really is an error, throw an exception. If you have to return status, design a data structure to hold the status and return it. But don't go launching new processes all over the place and reading their error streams.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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