我想为我的自定义 ant 任务打开一个源文件。我认为这很容易,因为类加载器获取资源肯定会立即为我找到源文件。错误的!
这是我的代码:
//build the name of the template
StringBuilder sb = new StringBuilder(VersionTemplate.class.getName());
sb.append(".java");
String templateName = sb.toString();
//find the template
InputStream inputStream = VersionTemplate.class.getResourceAsStream(templateName);
inputStream 始终为空。
有任何想法吗?