gpt4 book ai didi

java - 了解 writeDataToPipe

转载 作者:搜寻专家 更新时间:2023-11-01 09:03:13 24 4
gpt4 key购买 nike

我在最新的 Android 记事本教程中找到了这段代码 fragment link它使用 contentprovider 并实现 PipeDataWriter。

该接口(interface)有其方法 writeDataToPipe,他们是这样实现的:

@Override
public void writeDataToPipe(ParcelFileDescriptor output, Uri uri, String mimeType, Bundle opts, Cursor c) {
// We currently only support conversion-to-text from a single note entry,
// so no need for cursor data type checking here.
FileOutputStream fout = new FileOutputStream(output.getFileDescriptor());
PrintWriter pw = null;
try {
pw = new PrintWriter(new OutputStreamWriter(fout, "UTF-8"));
pw.println(c.getString(READ_NOTE_TITLE_INDEX));
pw.println("");
pw.println(c.getString(READ_NOTE_NOTE_INDEX));
} catch (UnsupportedEncodingException e) {
Log.w(TAG, "Ooops", e);
} finally {
c.close();
if (pw != null) {
pw.flush();
}
try {
fout.close();
} catch (IOException e) {
}
}
}

我的疑问是为什么他们专门使用 PipeDataWriter?

这是某种设计模式吗?

我没有发现其他来源使用过它。为什么会这样?

最佳答案

why specifically they are using PipeDataWriter?

他们在 openTypedAssetFile() 的实现中使用了 openPipeHelper()openPipeHelper()PipeDataWriter 作为参数。在他们的例子中,他们在 NotePadProvider 本身上实现了 PipeDataWriter,因此需要实现 openPipeHelper() 来实现 所需的契约(Contract)>PipeDataWriter 接口(interface)。

PipeDataWriteropenPipeHelper() 是 API 级别 11 的新功能。以前,您必须推出自己的解决方案来 fork 线程以返回文件的内容。

关于java - 了解 writeDataToPipe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13719896/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com