import java.io.*;
class Demo
{
public static void main(String args[])
{
File f=new File("1234.msg");
String arr[]=f.list();
System.out.println(arr.length);
}
}

Answers were Sorted based on User's Feedback



import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1..

Answer / sri

this code gives Nullpointer exception

Is This Answer Correct ?    6 Yes 0 No

import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1..

Answer / sarath

so what is your question..?
the code gives compilation error... because it should throw a IOException..

Is This Answer Correct ?    4 Yes 4 No

import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1..

Answer / meziane

The list() of the class java.io.File "returns an array of Strings naming the files and directories in the directory denoted by this abstract pathname."

http://docs.oracle.com/javase/6/docs/api/java/io/File.html#list%28%29

The abstract pathname is the path specified in File f = new File(patAsString).
The method returns null, if the abstract pathname does not denote a directory (i.e an existing directory).
No compilation error.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

how to print hello world every second till i have pressed enter key ???

1 Answers   SAP Labs,


What is the basic concepts of OOPS?

0 Answers   BlackRock,


How many bits are used to represent unicode, ascii, utf-16, and utf-8 characters?

0 Answers  


Is java a security risk?

0 Answers  


What is the unit of plancks constant?

0 Answers  


Difference between flush() and commit() in hibernate?

2 Answers   Bally Technologies,


What is qms certification?

0 Answers  


What is jrmp?

0 Answers  


Can you declare an interface method static?

0 Answers  


Why singleton pattern is better than creating singleton class with static instance?

0 Answers  


What is sortedmap interface?

0 Answers  


Does treeset use compareto?

0 Answers  


Categories