gpt4 book ai didi

java - Android Annotation处理器访问资源(assets)

转载 作者:行者123 更新时间:2023-11-29 10:10:36 52 4
gpt4 key购买 nike

我想在我的注释处理器中访问我的 andoid studio 项目中的资源。

我首先尝试使用 filer 的 getResource 方法:

FileObject fo = processingEnv.getFiler().getResource(StandardLocation.SOURCE_PATH, "", "src/main/res/layout/activity_main.xml");

,但它总是抛出一个异常,只是将“src/main/res/layout/activity_main.xml”作为消息返回。

接下来我想我试过的是

this.getClass().getResource("src/main/res/layout/activity_main.xml")

,但这总是返回 null。

我最后想用的是这个:

JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
StandardJavaFileManager fm = compiler.getStandardFileManager(null, null, null);
Iterable<? extends File> locations = fm.getLocation(StandardLocation.SOURCE_PATH);
for (File file : locations) {
System.out.print(file.getAbsolutePath());
}

,但是会抛出空指针异常

最佳答案

我使用以下方法从我的注释处理器中获取布局文件夹:

private File findLayouts() throws Exception {
Filer filer = processingEnv.getFiler();

JavaFileObject dummySourceFile = filer.createSourceFile("dummy" + System.currentTimeMillis());
String dummySourceFilePath = dummySourceFile.toUri().toString();

if (dummySourceFilePath.startsWith("file:")) {
if (!dummySourceFilePath.startsWith("file://")) {
dummySourceFilePath = "file://" + dummySourceFilePath.substring("file:".length());
}
} else {
dummySourceFilePath = "file://" + dummySourceFilePath;
}

URI cleanURI = new URI(dummySourceFilePath);

File dummyFile = new File(cleanURI);

File projectRoot = dummyFile.getParentFile().getParentFile().getParentFile().getParentFile().getParentFile().getParentFile();

return new File(projectRoot.getAbsolutePath() + "/src/main/res/layout");
}

关于java - Android Annotation处理器访问资源(assets),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37225786/

52 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com