I was wondering if I can get an output like this with Java
http://blog.dbugs.org/wp-content/uploads/2007/03/ls_la.jpg
That has to work under Linux, Windows and Mac, so if it's possible i prefer not to use Runtime.exec()
|
I was wondering if I can get an output like this with Java http://blog.dbugs.org/wp-content/uploads/2007/03/ls_la.jpg That has to work under Linux, Windows and Mac, so if it's possible i prefer not to use Runtime.exec() |
||||
| show 1 more comment |
|
I think you can use the metadata of a http://docs.oracle.com/javase/tutorial/essential/io/fileAttr.html Example:
(This example was taken from the link I provided). Hope this helps you Checking the Java API, I find out that the data you need (size, attributes, etc.) are accesible through the Notice that linux and mac are both Unix-like systems, and windows is not. Therefore, you won't be able to get all the file attributes you can expect to get on linux or mac in windows... but you can get the most important values |
|||||||||
|
|
No, you can't, because the output you want has *nix-only attributes "owner" and "group", which don't exist on Windows platforms. A java |
|||||||||||
|
Runtime.exec... – Edward Thomson Oct 19 '12 at 15:46