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


Java ZipException.getMessage方法代码示例

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


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

示例1: writeZipWithClasses

import java.util.zip.ZipException; //导入方法依赖的package包/类
private static void writeZipWithClasses(List<Path> inputs, D8Output output, Path path)
    throws IOException {
  try (Closer closer = Closer.create()) {
    try (ZipOutputStream out = new ZipOutputStream(Files.newOutputStream(path))) {
      // For each input archive file, add all class files within.
      for (Path input : inputs) {
        if (isArchive(input)) {
          try (ZipInputStream in = new ZipInputStream(Files.newInputStream(input))) {
            ZipEntry entry;
            while ((entry = in.getNextEntry()) != null) {
              if (isClassFile(Paths.get(entry.getName()))) {
                addEntry(entry.getName(), in, out);
              }
            }
          } catch (ZipException e) {
            throw new CompilationError(
                "Zip error while reading '" + input + "': " + e.getMessage(), e);
          }
        }
      }
      // Add dex files.
      List<Resource> dexProgramSources = output.getDexResources();
      for (int i = 0; i < dexProgramSources.size(); i++) {
        addEntry(getDexFileName(i), closer.register(dexProgramSources.get(i).getStream()), out);
      }
    }
  }
}
 
开发者ID:inferjay,项目名称:r8,代码行数:29,代码来源:CompatDx.java

示例2: streamContent

import java.util.zip.ZipException; //导入方法依赖的package包/类
/**
 * Content accessor.
 * 
 * @return InputStream
 */
@Override
public InputStream streamContent()
    throws IOException {
    try {
        if (binaryContent == null) {
            InputStream is = base.getInputStream(entry);
            inputStream = is;
            return is;
        }
    } catch (ZipException e) {
        throw new IOException(e.getMessage(), e);
    }
    return super.streamContent();
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:20,代码来源:WARDirContext.java

示例3: streamContent

import java.util.zip.ZipException; //导入方法依赖的package包/类
/**
 * Content accessor.
 * 
 * @return InputStream
 */
public InputStream streamContent()
    throws IOException {
    try {
        if (binaryContent == null) {
            inputStream = base.getInputStream(entry);
        }
    } catch (ZipException e) {
        throw new IOException(e.getMessage());
    }
    return super.streamContent();
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:17,代码来源:WARDirContext.java

示例4: streamContent

import java.util.zip.ZipException; //导入方法依赖的package包/类
/**
 * Content accessor.
 * 
 * @return InputStream
 */
@Override
public InputStream streamContent() throws IOException {
	try {
		if (binaryContent == null) {
			InputStream is = base.getInputStream(entry);
			inputStream = is;
			return is;
		}
	} catch (ZipException e) {
		throw new IOException(e.getMessage(), e);
	}
	return super.streamContent();
}
 
开发者ID:how2j,项目名称:lazycat,代码行数:19,代码来源:WARDirContext.java


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