How to rewrite or modify XML in android 2.1 version
问题 I tried to modify XML data using JDOm and transformer concept, this two functions are works in 2.2 version. but whenever i tried to compile in 2.1 i am getting exception. Also i searched this issue in google, they mentioned 2.1 version never support transformer concept. what is the alternative way to modify XML file. String filePath = Environment.getExternalStorageDirectory() + getDir; File file = new File(filePath); if (file.exists()) { Document document = (Document) builder.build(file);