Java:创建一个字节数组支持的 FileChannel
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Channels.newChannel(InputStream) 或 Channels.newChannel(OutputStream) 但它们将为您提供 ReadableByteChannel 或 WritableByteChannel 。他们不会给您一个
FileChannel
,考虑到您没有文件,这是有道理的 - 没有文件的FileChannel
没有任何意义。如果您将类更改为接受任何ReadableByteChannel
或WritableByteChannel
,那应该没问题。You can use
Channels.newChannel(InputStream)
orChannels.newChannel(OutputStream)
but those will give you aReadableByteChannel
or aWritableByteChannel
. They won't give you aFileChannel
, which makes sense given that you don't have a file - aFileChannel
without a file doesn't make any sense. If you change your class to accept anyReadableByteChannel
orWritableByteChannel
, that should be fine.