I want access to R.java using InputStream, in order to get the key of the resource.
File file = new File("gen/com/XX/R.java") ;
new FileInputStream(file) ;
I had used two file path gen/com/XX/R.java or com/XX/R.java
But return inputStream object is null.
Who can tell me R.java can access? if can do it, how to do? Can anyone give me some suggestion?
Thanks .