The below code works:
import java.io.File;
class Demo {
public static void main(String args[]){
System.out.println("Hello, World");
System.out.println((new Demo.Test(".")). getAbsolutePath());
}
public static class Test extends File {
public Test(String p){
super(p);
}
}
}
The output is:
Hello, World
/home/code2/public_html/java/.
So that I can even execute a delete command on the folder. :P
On 06-Feb-2014, at 2:37 pm, alina jhones <alina.guru99@gmail.com> wrote:
"HiI have created a real time java code compiler at http://www.guru99.com/try-java-editor.html Although I have checked all security aspects … do you experts see any major flaw that I need to care of?"--
You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.