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


Java Utils.closeQuietly方法代码示例

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


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

示例1: downloadFromStream

import org.fdroid.fdroid.Utils; //导入方法依赖的package包/类
void downloadFromStream(int bufferSize, boolean resumable) throws IOException, InterruptedException {
    Utils.debugLog(TAG, "Downloading from stream");
    InputStream input = null;
    OutputStream outputStream = new FileOutputStream(outputFile, resumable);
    try {
        input = getInputStream();

        // Getting the input stream is slow(ish) for HTTP downloads, so we'll check if
        // we were interrupted before proceeding to the download.
        throwExceptionIfInterrupted();

        copyInputToOutputStream(input, bufferSize, outputStream);
    } finally {
        Utils.closeQuietly(outputStream);
        Utils.closeQuietly(input);
    }

    // Even if we have completely downloaded the file, we should probably respect
    // the wishes of the user who wanted to cancel us.
    throwExceptionIfInterrupted();
}
 
开发者ID:uhuru-mobile,项目名称:mobile-store,代码行数:22,代码来源:Downloader.java

示例2: clearCurrentMDNSService

import org.fdroid.fdroid.Utils; //导入方法依赖的package包/类
private void clearCurrentMDNSService() {
    if (jmdns != null) {
        jmdns.unregisterAllServices();
        Utils.closeQuietly(jmdns);
        pairService = null;
        jmdns = null;
    }
}
 
开发者ID:uhuru-mobile,项目名称:mobile-store,代码行数:9,代码来源:BonjourBroadcast.java

示例3: close

import org.fdroid.fdroid.Utils; //导入方法依赖的package包/类
public void close() {

        for (ClientConnection clientConnection : clients) {
            clientConnection.interrupt();
        }

        interrupt();

        if (serverSocket != null) {
            Utils.closeQuietly(serverSocket);
        }
    }
 
开发者ID:uhuru-mobile,项目名称:mobile-store,代码行数:13,代码来源:BluetoothServer.java

示例4: closeQuietly

import org.fdroid.fdroid.Utils; //导入方法依赖的package包/类
public void closeQuietly() {
    Utils.closeQuietly(input);
    Utils.closeQuietly(output);
    Utils.closeQuietly(socket);
}
 
开发者ID:uhuru-mobile,项目名称:mobile-store,代码行数:6,代码来源:BluetoothConnection.java

示例5: close

import org.fdroid.fdroid.Utils; //导入方法依赖的package包/类
@Override
protected void close() {
    if (inputStream != null) {
        Utils.closeQuietly(inputStream);
    }
}
 
开发者ID:uhuru-mobile,项目名称:mobile-store,代码行数:7,代码来源:LocalFileDownloader.java


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