Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to parse a plist file using apache commons configuration, everything seems to run ok but I'm unable to parse the file. My app does not crashes but I have this exception:

org.apache.commons.configuration.ConfigurationException: Unable to parse the configuration file

on my code below, it displays "Debug 2" from the logs, so I think I have a problem with plist.load();

I tried with many different plist files but the result is always the same...

Does anyone have a clue ?

Thanks a lot Ludovic

    try { 



        Log.d("propertyList parsing", "Debug 0");

        XMLPropertyListConfiguration plist = new XMLPropertyListConfiguration();
        Log.d("propertyList parsing", "Debug 1");
       plist.setFileName("/sdcard/myxml.xml");

        Log.d("propertyList parsing", "Debug 2");
        plist.load();
        Log.d("propertyList parsing", "Debug 3");

        Object prop = plist.getProperty("fr");
        Log.d("propertyList parsing", "Debug 4");

        if(prop instanceof List) {
            Log.d("propertyList parsing", "Debug 5");


            List<XMLPropertyListConfiguration> propertyListRoot = (List<XMLPropertyListConfiguration>) prop;
            Log.i("propertyList parsing",propertyListRoot.get(0).getClass().toString());
            Log.i("propertyList parsing",propertyListRoot.get(1).getClass().toString());

            for(int i=0; i<propertyListRoot.size(); i++) {
                String folder = (String) propertyListRoot.get(i).getProperty("Folder");
                List<XMLPropertyListConfiguration> courses = (List<XMLPropertyListConfiguration>) propertyListRoot.get(i).getProperty("Book_Landscape");

                Log.i("propertyList parsing","propertyListRoot "+i+" in folder "+folder);
                for(int j=0; j<courses.size(); j++) {
                 //   BigInteger course_index = (BigInteger) courses.get(j).getProperty("Index");
                    String BackgroundImage = (String) courses.get(j).getProperty("BackgroundImage");

                    Log.i("propertyList parsing","- BackgroundImage " +BackgroundImage);
                }
            }



            Log.i("propertyList parsing", "Debug 6 EVERYTHING OK !!!");

        }


    } catch (ConfigurationException e) {
        Log.e("propertyList parsing","ConfigurationException: "  + e);
        //e.printStackTrace();
    }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.