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.
正如Hessian文档页面提到的那样,我正在尝试实现文件下载api:
文件下载接口 包装示例; 公共接口下载{公共输入流下载(字符串文件名,输入流数据);}
文件下载接口
包装示例;
公共接口下载{公共输入流下载(字符串文件名,输入流数据);}
但我仍然不知道该怎么做?为什么下载函数需要一个 InputStream 参数并返回另一个 InputStream?
下载方法应该是从服务器上的文件中读取数据并将数据发送出去。这两个 InputStream 指的是什么?
有人可以解释一下吗?非常感谢一个工作示例!