org.apache.commons.net.io.Util.closeQuietly()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(4.1k)|赞(0)|评价(0)|浏览(258)

本文整理了Java中org.apache.commons.net.io.Util.closeQuietly()方法的一些代码示例,展示了Util.closeQuietly()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.closeQuietly()方法的具体详情如下:
包路径:org.apache.commons.net.io.Util
类名称:Util
方法名:closeQuietly

Util.closeQuietly介绍

[英]Closes the object quietly, catching rather than throwing IOException. Intended for use from finally blocks.
[中]安静地关闭对象,捕捉而不是抛出异常。用于最后一个区块。

代码示例

代码示例来源:origin: commons-net/commons-net

  1. private static KeyStore loadStore(String storeType, File storePath, String storePass)
  2. throws KeyStoreException, IOException, GeneralSecurityException {
  3. KeyStore ks = KeyStore.getInstance(storeType);
  4. FileInputStream stream = null;
  5. try {
  6. stream = new FileInputStream(storePath);
  7. ks.load(stream, storePass.toCharArray());
  8. } finally {
  9. Util.closeQuietly(stream);
  10. }
  11. return ks;
  12. }

代码示例来源:origin: commons-net/commons-net

  1. @Override
  2. public String next() throws NoSuchElementException {
  3. if (savedException != null){
  4. throw new NoSuchElementException(savedException.toString());
  5. }
  6. String prev = line;
  7. if (prev == null) {
  8. throw new NoSuchElementException();
  9. }
  10. try {
  11. line = reader.readLine(); // save next line
  12. if (line == null) {
  13. Util.closeQuietly(reader);
  14. }
  15. } catch (IOException ex) {
  16. savedException = ex; // if it fails, save the exception, as it does not apply to this call
  17. Util.closeQuietly(reader);
  18. }
  19. return prev;
  20. }

代码示例来源:origin: commons-net/commons-net

  1. /**
  2. *
  3. * @param _reader the reader to wrap
  4. * @param addDotReader whether to additionally wrap the reader in a DotTerminatedMessageReader
  5. * @throws IOException
  6. */
  7. ReplyIterator(BufferedReader _reader, boolean addDotReader) throws IOException {
  8. reader = addDotReader ? new DotTerminatedMessageReader(_reader) : _reader;
  9. line = reader.readLine(); // prime the iterator
  10. if (line == null) {
  11. Util.closeQuietly(reader);
  12. }
  13. }

代码示例来源:origin: commons-net/commons-net

  1. /**
  2. * Initiate list parsing for MLSD listings.
  3. *
  4. * @param pathname
  5. * @return the engine
  6. * @throws IOException
  7. */
  8. private FTPListParseEngine initiateMListParsing(String pathname) throws IOException
  9. {
  10. Socket socket = _openDataConnection_(FTPCmd.MLSD, pathname);
  11. FTPListParseEngine engine = new FTPListParseEngine(MLSxEntryParser.getInstance(), __configuration);
  12. if (socket == null)
  13. {
  14. return engine;
  15. }
  16. try {
  17. engine.readServerList(socket.getInputStream(), getControlEncoding());
  18. }
  19. finally {
  20. Util.closeQuietly(socket);
  21. completePendingCommand();
  22. }
  23. return engine;
  24. }

代码示例来源:origin: commons-net/commons-net

  1. false);
  2. } finally {
  3. Util.closeQuietly(input);
  4. Util.closeQuietly(socket);
  5. if (csl != null) {

代码示例来源:origin: commons-net/commons-net

  1. Util.closeQuietly(socket);

代码示例来源:origin: commons-net/commons-net

  1. Util.closeQuietly(socket); // ignore close errors here
  2. if (csl != null) {

代码示例来源:origin: org.ikasan/ikasan-ftp-endpoint

  1. private KeyStore loadStore(String storeType, File storePath, String storePass)
  2. throws KeyStoreException, IOException, GeneralSecurityException {
  3. KeyStore ks = KeyStore.getInstance(storeType);
  4. FileInputStream stream = null;
  5. try {
  6. stream = new FileInputStream(storePath);
  7. ks.load(stream, storePass.toCharArray());
  8. } finally {
  9. Util.closeQuietly(stream);
  10. }
  11. return ks;
  12. }

代码示例来源:origin: org.jetbrains.intellij.deps/commons-vfs2

  1. /**
  2. * Initiate list parsing for MLSD listings.
  3. *
  4. * @param pathname
  5. * @return the engine
  6. * @throws IOException
  7. */
  8. private FTPListParseEngine initiateMListParsing(String pathname) throws IOException {
  9. Socket socket;
  10. FTPListParseEngine engine = new FTPListParseEngine(new MLSxLoggingEntryParser(log));
  11. if ((socket = _openDataConnection_(FTPCommand.MLSD, pathname)) == null) {
  12. return engine;
  13. }
  14. try {
  15. engine.readServerList(socket.getInputStream(), getControlEncoding());
  16. } finally {
  17. Util.closeQuietly(socket);
  18. completePendingCommand();
  19. }
  20. return engine;
  21. }
  22. //[IntelliJ] WI-12266 Support directory listing with MLSD command (adding logging of mlsd command)-------

代码示例来源:origin: org.jetbrains.intellij.deps/commons-vfs2

  1. /**
  2. * Initiate list parsing for MLSD listings.
  3. *
  4. * @param pathname
  5. * @return the engine
  6. * @throws IOException
  7. */
  8. public FTPListParseEngine initiateMListParsing(String pathname) throws IOException {
  9. Socket socket;
  10. FTPListParseEngine engine = new FTPListParseEngine(new MLSxLoggingEntryParser(log));
  11. if ((socket = _openDataConnection_(FTPCommand.MLSD, pathname)) == null) {
  12. return engine;
  13. }
  14. try {
  15. engine.readServerList(socket.getInputStream(), getControlEncoding());
  16. } finally {
  17. Util.closeQuietly(socket);
  18. completePendingCommand();
  19. }
  20. return engine;
  21. }
  22. //[IntelliJ] WI-12266 Support directory listing with MLSD command (adding logging of mlsd command)-------

相关文章