Java API Tutorial - Java URLConnection .getFileNameMap ()








Syntax

URLConnection.getFileNameMap() has the following syntax.

public static FileNameMap getFileNameMap()

Example

In the following code shows how to use URLConnection.getFileNameMap() method.

import java.net.URL;
import java.net.URLConnection;
/*from www .  j av  a 2 s .c o  m*/
public class Main {

  public static void main(String args[]) throws Exception {

    URL u = new URL("http://www.java2s.com");
    URLConnection uc = u.openConnection();

    System.out.println(uc.getFileNameMap());
  }

}

The code above generates the following result.