0

我的用例是能够在不创建文件的情况下创建 FileOutputStream。所以我创建了这个基于 Guava 的 OutputStream:

public class LazyInitOutputStream extends OutputStream {

  private final Supplier<OutputStream> lazyInitOutputStreamSupplier;

  public LazyInitOutputStream(Supplier<OutputStream> outputStreamSupplier) {
    this.lazyInitOutputStreamSupplier = Suppliers.memoize(outputStreamSupplier);
  }

  @Override
  public void write(int b) throws IOException {
    lazyInitOutputStreamSupplier.get().write(b);
  }

  @Override
  public void write(byte b[]) throws IOException {
    lazyInitOutputStreamSupplier.get().write(b);
  }

  @Override
  public void write(byte b[], int off, int len) throws IOException {
    lazyInitOutputStreamSupplier.get().write(b,off,len);
  }


  public static LazyInitOutputStream lazyFileOutputStream(final File file) {
    return lazyFileOutputStream(file,false);
  }

  public static LazyInitOutputStream lazyFileOutputStream(final File file,final boolean append) {
    return new LazyInitOutputStream(new Supplier<OutputStream>() {
      @Override
      public OutputStream get() {
        try {
          return new FileOutputStream(file,append);
        } catch (FileNotFoundException e) {
          throw Throwables.propagate(e);
        }
      }
    });
  }

}

这工作正常,但我看到有一些InputSupplier/OutputSupplier我可以使用的接口......除了它们不扩展供应商,所以我不能使用这里需要的记忆功能,因为我不希望OutputSupplier表现得像工厂。

此外还有Filesapi:

public static OutputSupplier<FileOutputStream> newOutputStreamSupplier(File file,
                                                       boolean append)

有没有办法可以使用 OutputSupplier 并且它会比我当前的代码更优雅?

OutputSupplier 不实施供应商是否有原因?

4

1 回答 1

8

InputSupplier可以抛出一个IOExceptionSupplier不能。

于 2013-09-18T15:25:01.257 回答