摘要:
这里的remoteFilePath 为远程文件,可理解为就是一个文件地址(实际可能为返回的文件流)/** * 获取远程文件 * @param remoteFilePath 远程文件路径 * @param localFilePath 本地文件路径 */ public void downloadFile(String remoteFilePath, String localFilePath) { URL urlfile = null; HttpURLConnection httpUrl = null; BufferedInputStream bis = null; BufferedOutp... 阅读全文