Package sandbox

Source Code of sandbox.FileTests

package sandbox;

import org.junit.Test;

import java.net.URL;
import java.nio.file.FileSystems;
import java.nio.file.Path;

/**
* @author Keesun Baik
*/
public class FileTests {

  @Test
  public void path() {
    Path path = FileSystems.getDefault().getPath("./src/main/resources/socket.io.js");
    System.out.println(path.toFile().isFile());
    System.out.println(path.toString());
  }
}
TOP

Related Classes of sandbox.FileTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.