Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在编写一个简单的多部分/表单数据类型解析器。
我有一个 BufferedInputStream 作为输入。multipart/form-data 既有原始字节数据又有字符数据。
在某些情况下,我需要读取字符(用户定义的编码),在某些情况下我需要读取原始字节。除了制作具有字符和字节支持的自定义阅读器之外,还有什么简单的方法可以做到这一点?
限制:缓冲区的大小不能超过 16k。