我正在尝试阅读AndroiadManifest.xml文件的内容,该文件似乎是“DBase 3数据文件”二进制格式。
Java中是否有关于如何读取此二进制文件的代码示例?我不需要写,只需阅读文字内容。
答案 0 :(得分:0)
步骤1:首先,您需要使用apktool
提取.apk文件步骤2:现在我们要使用Java DOM XML解析器读取androidmanifest.xml文件 恩。想要阅读"使用许可"标签形成一个androidmanifest.xml
public class parse_xml
{
public static void main(String argv[])
{
try {
File fXmlFile= new File("C:\\apkfolder\\AndroidManifest.xml");
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(fXmlFile);
doc.getDocumentElement().normalize();
System.out.println("Root element :"+ doc.getDocumentElement().getNodeName());
NodeList nList= doc.getElementsByTagName("uses-permission");
System.out.println("----------------------------");
for (int temp = 0; temp < nList.getLength(); temp++) {
Node nNode = nList.item(temp);
//System.out.println("\nCurrent Element :" + nNode.getNodeName());
if (nNode.getNodeType() == Node.ELEMENT_NODE) {
Element eElement = (Element) nNode;
System.out.println(eElement.getAttribute("android:name"));
}
}
System.out.println("total no. of permissions"+ nList.getLength());
} catch (Exception e) {
}
}
}