Java:创建一个字节数组支持的 FileChannel

发布于 2024-12-12 07:38:12 字数 215 浏览 0 评论 0原文

我有一个 IO 类,它使用 ByteBuffer 来缓冲对 FileChannel 的访问(因此它基本上在构造函数中接受 FileChannel)。我想对其进行单元测试,因此如果我可以获得字节数组支持的 FileChannel 以避免在测试期间创建和删除文件,那就太好了。

为了让你有个想法,如果我能得到像 ByteArrayOutputStream.getChannel() 这样的东西那就完美了。

I have a class for IO that uses ByteBuffer to buffer access to a FileChannel (so it basically accepts a FileChannel at the constructor). I'd like to unittest it, so it'd be nice if I could get a bytearray-backed FileChannel to avoid creating and deleting files during test.

To get you an idea, it'd be perfect if I could get something like ByteArrayOutputStream.getChannel().

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撑一把青伞 2024-12-19 07:38:12

您可以使用 Channels.newChannel(InputStream) 或 Channels.newChannel(OutputStream) 但它们将为您提供 ReadableByteChannel 或 WritableByteChannel 。他们不会给您一个 FileChannel,考虑到您没有文件,这是有道理的 - 没有文件的 FileChannel 没有任何意义。如果您将类更改为接受任何 ReadableByteChannelWritableByteChannel,那应该没问题。

You can use Channels.newChannel(InputStream) or Channels.newChannel(OutputStream) but those will give you a ReadableByteChannel or a WritableByteChannel. They won't give you a FileChannel, which makes sense given that you don't have a file - a FileChannel without a file doesn't make any sense. If you change your class to accept any ReadableByteChannel or WritableByteChannel, that should be fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文