當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。