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


Java FileNotFoundException.initCause方法代码示例

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


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

示例1: getInputStream

import java.io.FileNotFoundException; //导入方法依赖的package包/类
public java.io.InputStream getInputStream () throws java.io.FileNotFoundException {
    if (openStreams < 0) {
        FileNotFoundException e = new FileNotFoundException("Already exists output stream");
        if (previousStream != null) {
            e.initCause(previousStream);
        }
        throw e;
    }
    
    class IS extends ByteArrayInputStream {
        public IS(byte[] arr) {
            super(arr);
            openStreams++;
        }

        @Override
        public void close() throws IOException {
            openStreams--;
            super.close();
        }
    }
    previousStream = new Exception("Input");
    
    return new IS(RUNNING.content.getBytes ());
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:26,代码来源:FileEncodingQueryDataEditorSupportTest.java

示例2: listChildren

import java.io.FileNotFoundException; //导入方法依赖的package包/类
@Override
   public LocalFilesystemURL[] listChildren(LocalFilesystemURL inputURL) throws FileNotFoundException {
       String pathNoSlashes = inputURL.path.substring(1);
       if (pathNoSlashes.endsWith("/")) {
           pathNoSlashes = pathNoSlashes.substring(0, pathNoSlashes.length() - 1);
       }

       String[] files;
       try {
           files = listAssets(pathNoSlashes);
       } catch (IOException e) {
           FileNotFoundException fnfe = new FileNotFoundException();
           fnfe.initCause(e);
           throw fnfe;
       }

       LocalFilesystemURL[] entries = new LocalFilesystemURL[files.length];
       for (int i = 0; i < files.length; ++i) {
           entries[i] = localUrlforFullPath(new File(inputURL.path, files[i]).getPath());
       }
       return entries;
}
 
开发者ID:alex-shpak,项目名称:keemob,代码行数:23,代码来源:AssetFilesystem.java

示例3: asFileNotFoundException

import java.io.FileNotFoundException; //导入方法依赖的package包/类
public static FileNotFoundException asFileNotFoundException(Throwable t)
        throws FileNotFoundException {
    if (t instanceof FileNotFoundException) {
        throw (FileNotFoundException) t;
    }
    final FileNotFoundException fnfe = new FileNotFoundException(t.getMessage());
    fnfe.initCause(t);
    throw fnfe;
}
 
开发者ID:kranthi0987,项目名称:easyfilemanager,代码行数:10,代码来源:DocumentInfo.java


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