Search:

Type: Posts; User: JavaPF

Search: Search took 0.07 seconds.

  1. Replies
    7
    Views
    2,920

    Re: Urgent - File exist nor working

    Also see - http://www.javaprogrammingforums.com/java-code-snippets-tutorials/107-how-write-file-using-java.html
  2. Replies
    7
    Views
    2,920

    Re: Urgent - File exist nor working

    Take a look at this example. You will be able to adapt it to suit your needs.


    String fullName = "C:\\JavaPF\\input.txt";
    File file = new File(fullName);

    if(file.exists()){...
Results 1 to 2 of 2