Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Support for file structure

Status
Not open for further replies.

tbt102

Programmer
Jan 1, 2002
61
US
Does java support file structures?

Thanks in advance for any help.


tbt102
 
What exactly do you mean? I'm pretty sure the answer to your question is yes, but it was kind of vague. Check out the java.io.File object, which is used to represent both files and directories on a file system.

Best,
Adam Rice
 
I'm sorry I phrased the question incorrectly.

The question is does java support data structures?

Thanks in advance for any help.

tbt102
 
Hmm, that's even more vague, all programming languages that I know of support data structures. Are you asking if JAVA has the ability to define data structures like C/C++ such as:
struct my_struct {
members;
};
(which you can handle completely with a class),
Or since you mentioned files earlier, if Java can read a certain type of data from a file?

JavaDude32
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top