当前位置: 首页>>代码示例>>Java>>正文


Java ByteContent.isDirectory方法代码示例

本文整理汇总了Java中com.intellij.history.ByteContent.isDirectory方法的典型用法代码示例。如果您正苦于以下问题:Java ByteContent.isDirectory方法的具体用法?Java ByteContent.isDirectory怎么用?Java ByteContent.isDirectory使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.intellij.history.ByteContent的用法示例。


在下文中一共展示了ByteContent.isDirectory方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: loadContent

import com.intellij.history.ByteContent; //导入方法依赖的package包/类
@NotNull
private static byte[] loadContent(@NotNull VirtualFilePointer filePointer, @NotNull Label label) throws DiffRequestProducerException {
  String path = filePointer.getPresentableUrl();
  ByteContent byteContent = label.getByteContent(FileUtil.toSystemIndependentName(path));

  if (byteContent == null || byteContent.isDirectory() || byteContent.getBytes() == null) {
    throw new DiffRequestProducerException("Can't load content");
  }

  return byteContent.getBytes();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:12,代码来源:ShowUpdatedDiffAction.java

示例2: convert

import com.intellij.history.ByteContent; //导入方法依赖的package包/类
@Nullable
public String convert(final VirtualFilePointer pointer) {
  if (pointer == null) return null;
  final String path = pointer.getPresentableUrl();
  final ByteContent byteContent = myLabel.getByteContent(FileUtil.toSystemIndependentName(path));
  if (byteContent == null || byteContent.isDirectory() || byteContent.getBytes() == null) {
    return null;
  }
  final VirtualFile vf = pointer.getFile();
  if (vf == null) {
    return LoadTextUtil.getTextByBinaryPresentation(byteContent.getBytes(), EncodingManager.getInstance().getDefaultCharset()).toString();
  } else {
    return LoadTextUtil.getTextByBinaryPresentation(byteContent.getBytes(), vf).toString();
  }
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:16,代码来源:ShowUpdatedDiffAction.java

示例3: loadContent

import com.intellij.history.ByteContent; //导入方法依赖的package包/类
@Nonnull
private static byte[] loadContent(@Nonnull FilePath filePointer, @Nonnull Label label) throws DiffRequestProducerException {
  String path = filePointer.getPresentableUrl();
  ByteContent byteContent = label.getByteContent(FileUtil.toSystemIndependentName(path));

  if (byteContent == null || byteContent.isDirectory() || byteContent.getBytes() == null) {
    throw new DiffRequestProducerException("Can't load content");
  }

  return byteContent.getBytes();
}
 
开发者ID:consulo,项目名称:consulo,代码行数:12,代码来源:ShowUpdatedDiffAction.java


注:本文中的com.intellij.history.ByteContent.isDirectory方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。