vote up 2 vote down star

how to list files and directories in current directory without using java.io.*?

flag
1  
Why don't you want to use java.io.*? – Hosam Aly Oct 15 at 11:40
3  
Maybe a requirement for the homework? – Aviator Oct 15 at 11:40
3  
How to do something in Java without using Java? Why? – jarnbjo Oct 15 at 11:40
This is a pretty crazy homework assignment if it is one. If it's not it's a pretty crazy requirement. Makes no sense at all. – PintSizedCat Oct 15 at 11:50

4 Answers

vote up 6 vote down

You can use Runtime.getRuntime().exec():

String[] cmdarray;
if (System.getProperty("os.name").startsWith("Windows")) {
    cmdarray = new String[] { "cmd.exe", "/c", "dir /b" };
} else { // for UNIX-like systems
    cmdarray = new String[] { "ls" };
}

Runtime.getRuntime().exec(cmdarray);

Thanks to @Geo for the Windows commands.

link|flag
3  
dir will work on most Linux systems, too. – furtelwart Oct 15 at 11:43
You should modify that to use the shell directly. You won't be able to execute dir directly on Windows, since it's a shell built-in. The Runtime call should be like this : Runtime.getRuntime().exec(new String[] {"cmd.exe","/c","dir"}) – Geo Oct 15 at 12:18
@Geo: Thanks for the information. I edited my answer. – Hosam Aly Oct 15 at 21:08
vote up 0 vote down

You could use JNA to make native calls to the underlying OS.

As an exercise in hard work it might be a worth while.

link|flag
vote up 1 vote down

Another option is writing OS specific code in C and accessing it via JNI. But once again. Why do you want this?

link|flag
vote up 10 vote down

This is actually possible without having to write any JNI or make any Runtime calls.

import java.net.URL;

import sun.net.www.content.text.PlainTextInputStream;

public class NoIO {
  public static void main(String args[]) {
    NoIO n = new NoIO();
    n.doT();
  }

  public void doT() {
    try {
      //Create a URL from the user.dir (run directory)
      //Prefix with the protocol file:/
      //Users java.net
      URL u = new URL("file:/"+System.getProperty("user.dir"));

      //Get the contents of the URL (this basically prints out the directory
      //list. Uses sun.net.www.content.text
      PlainTextInputStream in = (PlainTextInputStream)u.getContent();
      //Iterate over the InputStream and print it out.
      int c;
      while ((c = in.read()) != -1) { 
        System.out.print((char) c); 
      } 
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}

It's amazing what a little thought and boredom will do (and an inability to jump to hasty conclusions (where there's a will, there's a way)).

You could probably also do it using the ClassLoader, by overriding it, at some point Java has to iterate over all the files in the classpath, by hooking at that point you can print out all the files that it tries to load without using any kind of java.io.*.

After some investigation I don't think this is possible very easily, certainly not for a homework assignment unless it's some kind of RE'ing assignment or Forensics assignment.

link|flag
Wow! Fantastic! +1 – Aviator Oct 15 at 12:17
2  
It would be great to see a ClassLoader solution as well :D – Geo Oct 15 at 12:52

Your Answer

Get an OpenID
or

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