本文整理汇总了Java中com.intellij.openapi.util.io.FileUtil.adaptiveLoadBytes方法的典型用法代码示例。如果您正苦于以下问题:Java FileUtil.adaptiveLoadBytes方法的具体用法?Java FileUtil.adaptiveLoadBytes怎么用?Java FileUtil.adaptiveLoadBytes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.openapi.util.io.FileUtil
的用法示例。
在下文中一共展示了FileUtil.adaptiveLoadBytes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: copyFromResource
import com.intellij.openapi.util.io.FileUtil; //导入方法依赖的package包/类
/**
* Copies content of resource to the given file
*
* @param file to copy to
* @param resourceUrl url of the resource to be copied
* @throws IOException if resource not found or copying failed
*/
public static void copyFromResource(@NotNull VirtualFile file, @NonNls @NotNull String resourceUrl) throws IOException {
InputStream out = VfsUtil.class.getResourceAsStream(resourceUrl);
if (out == null) {
throw new FileNotFoundException(resourceUrl);
}
try {
byte[] bytes = FileUtil.adaptiveLoadBytes(out);
file.setBinaryContent(bytes);
} finally {
out.close();
}
}
示例2: createFileFromResource
import com.intellij.openapi.util.io.FileUtil; //导入方法依赖的package包/类
private static void createFileFromResource(Project project, VirtualFile drawableDir, String name, String resourceFilePath)
throws IOException {
if (drawableDir.findChild(name) != null) {
return;
}
VirtualFile resFile = drawableDir.createChildData(project, name);
InputStream stream = AndroidModuleBuilder.class.getResourceAsStream(resourceFilePath);
try {
byte[] bytes = FileUtil.adaptiveLoadBytes(stream);
resFile.setBinaryContent(bytes);
}
finally {
stream.close();
}
}