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

Is there a way to get the file name from a FileOutputStream or from FileInputStream?

share|improve this question

2 Answers

up vote 9 down vote accepted

Looks like the answer is no: http://download.oracle.com/javase/1.4.2/docs/api/java/io/FileOutputStream.html

There are no public methods that return the File or String used in construction of the stream.

EDIT: The same holds for FileInputStream.

share|improve this answer
I guess the same answer is for FileInputStream too right?? – Ebbu Feb 8 '11 at 6:22
@Ebbu - I guess you could read the javadoc yourself. Right? – Stephen C Feb 8 '11 at 6:37
1  
@Stephen- I read the docs, but just wanted to confirm that I didnt miss out anything. – Ebbu Feb 8 '11 at 6:46

This feature is not provided by the out-of-the-box File-Input/Output-Stream, but nothing stops you from writing your own subclass that stores the File (or fileName) and provides a getter for it.

I would suggest implementing some FileNameAware interface for this), as I/O Streams are usually referenced with the InputStream / OutputStream abstract classes to avoid coupling your application with specific implementations.

share|improve this answer
Thank You !! – Ebbu Feb 8 '11 at 6:52

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.