in Education by
This question already has answers here: Saving path in String (4 answers) Closed 5 years ago. I'm sure this has been answered, but ten different strategies hasn't worked on this issue. If I use C:\Users\Anny\Dropbox\SocialMediaOcto\instructions\Trees\instructions.txt as my absolute path for the file, IDEA cannot read or execute from this path. If I take that same path and paste it into windows explorer, it will execute right away. I dont want to focus on a working directory as this file works as the program's configurations file, but replaceing the slashes with backslashes doesnt work, the absolute path still brings me to the file, but IDEA doesnt launch. I'm at wits end. public static String generateFileName(String folder){ String filename = ""; List hashtags = new ArrayList<>(); String instructions_file = "C:\Users\Anny\Dropbox\SocialMediaOcto\instructions\Trees\instructions.txt"; //does not return true-true, but can launch file on windows explorer.. System.out.println("FILE EXIST AND EXECUTE?" + new File(instructions_file).getAbsoluteFile().canRead() +" "+new File(instructions_file).getAbsoluteFile().canExecute()); System.out.println(new File(instructions_file).getAbsoluteFile()); //C:\Users\Anny\Dropbox\SocialMediaOcto\instructions\Trees\instructions.txt BufferedReader br = null; try { String sCurrentLine; br = new BufferedReader(new FileReader(new File(instructions_file).getAbsoluteFile())); EDIT After replacing backslashes with forward slashes, the reader still cannot properly read or execute the file. LOG: The string prints: C:/Users/Anny/Dropbox/SocialMediaOcto/instructions/Bees/instructions.txt java.io.FileNotFoundException: C:\Users\Anny\Dropbox\SocialMediaOcto\instructions\Bees\instructions.txt (The system cannot find the file specified) JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Correct url: String instructions_file = "C:/Users/Anny/Dropbox/SocialMediaOcto/instructions/Trees/instructions.txt"; Because \ is an escape character in Java. If you want to use \ as a character you have to escape it itself. Correct Url v2: String instructions_file = "C:\\Users\\Anny\\Dropbox\\SocialMediaOcto\\instructions\\Trees\\instructions.txt"; What you had: String instructions_file = "C:\Users\Anny\Dropbox\SocialMediaOcto\instructions\Trees\instructions.txt"; is read by java as "C:{something}sers{something}nny{something}ropbox{something}ocialMediaOcto{something}nstructions\Trees\instructions.txt" In my oppinion it's much better to use the first approach as it's platform safe.

Related questions

0 votes
    This question already has answers here: Saving path in String (4 answers) Closed 5 years ago. I'm ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 30, 2022 in Education by JackTerrance
0 votes
    I am getting the following message in android LogCat 03-20 01:45:03.362: WARN/System.err(369): ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 10, 2022 in Education by JackTerrance
0 votes
    I have use the pesdk library to edit an image. public static int GALLERY_RESULT = 2; private void ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 2, 2022 in Education by JackTerrance
0 votes
    I have use the pesdk library to edit an image. public static int GALLERY_RESULT = 2; private void ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 2, 2022 in Education by JackTerrance
0 votes
    State whether the following statements are true or false with reasons. Today the doctrine of Parliamentary Sovereignty no ... the United Kingdom. Please answer the above question....
asked Aug 3, 2022 in Education by JackTerrance
0 votes
    I created a Java applet program and compiled it. As a result of the compilation, it generated a class ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 9, 2022 in Education by JackTerrance
0 votes
    Context: I have been writing automated test scripts with Appium for quite a while and everything works well ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 27, 2022 in Education by JackTerrance
0 votes
    Which of the following type of metrics do not involve subjective context but are material facts? (1)Absolute Metrics (2)Relative Metrics...
asked May 15, 2021 in Technology by JackTerrance
0 votes
    I installed PEAR and when I try to run it, I receive this message: PHP_PEAR_PHP_BIN is not set correctly ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 26, 2022 in Education by JackTerrance
0 votes
    Can we deploy Azure Functions referencing a zip file with relative path?...
asked Mar 10, 2021 in Technology by JackTerrance
0 votes
    I want to upload the file pdf to the folder but a file is not saved to a folder. I already read the ... .run(debug=True)``` Select the correct answer from above options...
asked Jan 19, 2022 in Education by JackTerrance
0 votes
    How to read entire file in one line using java 8? (a) Files.readAllLines() (b) Files.read() (c) ... Autoboxing & Miscellaneous of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    How to read entire file in one line using java 8? (a) Files.readAllLines() (b) Files.read() (c ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 24, 2021 in Education by JackTerrance
0 votes
    Can we check the existence of a file without using try statement in Python? Select the correct answer from above options...
asked Jan 21, 2022 in Education by JackTerrance
0 votes
    How do I check whether a file exists without exceptions?...
asked Jan 9, 2021 in Technology by JackTerrance
...