Every time I run this code, I get the message "File not found" in my exception however, I don't understand why is that when I literally have the file I'm looking for sitting at the root of my c:?
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    final TextView testMEtext = (TextView) findViewById(R.id.testMEtext);
    //
    JSONParser parser = new JSONParser();
    try {
        //File temp = new File("C:/Windows/outdoorWeather.json");
        //String path = temp.getAbsolutePath();
        //testMEtext.setText(path);
        **Object obj = parser.parse(new FileReader("/C:/outdoorWeather.json"));**
        JSONObject jsonObject = (JSONObject) obj;
        String oTemp = (String) jsonObject.get("Fahrenheit temperature");
        testMEtext.setText(oTemp);
    }
     catch (FileNotFoundException e) {
        e.printStackTrace();
         testMEtext.setText("File not found");
    }
    catch (IOException e) {
        e.printStackTrace();
    } catch (ParseException e) {
        e.printStackTrace();
    }
}
}
 
     
    