Java下http下载文件客户端和上传文件客户端实例代码
程序员文章站
2024-03-31 12:20:40
一、下载客户端代码
package javadownload;
import java.io.bytearrayoutputstream;
import...
一、下载客户端代码
package javadownload; import java.io.bytearrayoutputstream; import java.io.file; import java.io.fileoutputstream; import java.io.inputstream; import java.net.httpurlconnection; import java.net.url; /** * @说明 导出虚拟机 * @author wxt * @version 1.0 * @since */ public class getvm { /** * 测试 * @param args */ public static void main(string[] args) { string url = "http://192.168.5.102:8845/xx"; byte[] btimg = getvmfromnetbyurl(url); if(null != btimg && btimg.length > 0){ system.out.println("读取到:" + btimg.length + " 字节"); string filename = "ygserver"; writeimagetodisk(btimg, filename); }else{ system.out.println("没有从该连接获得内容"); } } /** * 将vm 写入到磁盘 * @param vm 数据流 * @param filename 文件保存时的名称 */ public static void writeimagetodisk(byte[] vm, string filename){ try { file file = new file("./" + filename); fileoutputstream fops = new fileoutputstream(file); fops.write(vm); fops.flush(); fops.close(); system.out.println("下载完成"); } catch (exception e) { e.printstacktrace(); } } /** * 根据地址获得数据的字节流 * @param strurl 网络连接地址 * @return */ public static byte[] getvmfromnetbyurl(string strurl){ try { url url = new url(strurl); httpurlconnection conn = (httpurlconnection)url.openconnection(); conn.setrequestmethod("get"); conn.setconnecttimeout(5 * 1000); inputstream instream = conn.getinputstream();//通过输入流获取数据 byte[] btimg = readinputstream(instream);//得到的二进制数据 return btimg; } catch (exception e) { e.printstacktrace(); } return null; } /** * 从输入流中获取数据 * @param instream 输入流 * @return * @throws exception */ public static byte[] readinputstream(inputstream instream) throws exception{ bytearrayoutputstream outstream = new bytearrayoutputstream(); byte[] buffer = new byte[1024]; int len = 0; while( (len=instream.read(buffer)) != -1 ){ outstream.write(buffer, 0, len); } instream.close(); return outstream.tobytearray(); } }
上述代码只适合下载小文件,如果下载大文件则会出现 exception in thread "main" java.lang.outofmemoryerror: java heap space 错误,所以如果下载大文件需要对上述代码进行改造,代码如下:
package javadownload; import java.io.bytearrayoutputstream; import java.io.file; import java.io.fileoutputstream; import java.io.inputstream; import java.net.httpurlconnection; import java.net.url; /** * @说明 导出虚拟机 * @author wxt * @version 1.0 * @since */ public class getbigfile { /** * 测试 * @param args */ public static void main(string[] args) { string url = "http://192.168.5.76:8080/export?uuid=123"; string filename="yserver"; getvmfromnetbyurl(url,filename); } /** * 根据地址获下载文件 * @param strurl 网络连接地址 * @param filename 下载文件的存储名称 */ public static void getvmfromnetbyurl(string strurl,string filename){ try { url url = new url(strurl); httpurlconnection conn = (httpurlconnection)url.openconnection(); conn.setrequestmethod("get"); conn.setconnecttimeout(5 * 1000); inputstream instream = conn.getinputstream();//通过输入流获取数据 byte[] buffer = new byte[4096]; int len = 0; file file = new file("./" + filename); fileoutputstream fops = new fileoutputstream(file); while( (len=instream.read(buffer)) != -1 ){ fops.write(buffer, 0, len); } fops.flush(); fops.close(); } catch (exception e) { e.printstacktrace(); } } }
二、上传文件客户端:
package javadownload; import java.io.datainputstream; import java.io.dataoutputstream; import java.io.file; import java.io.fileinputstream; import java.io.ioexception; import java.io.outputstream; import java.net.httpurlconnection; import java.net.url; public class fileupload { /** * 发送请求 * * @param url * 请求地址 * @param filepath * 文件在服务器保存路径(这里是为了自己测试方便而写,可以将该参数去掉) * @return * @throws ioexception */ public int send(string url, string filepath) throws ioexception { file file = new file(filepath); if (!file.exists() || !file.isfile()) { return -1; } /** * 第一部分 */ url urlobj = new url(url); httpurlconnection con = (httpurlconnection) urlobj.openconnection(); /** * 设置关键值 */ con.setrequestmethod("post"); // 以post方式提交表单,默认get方式 con.setdoinput(true); con.setdooutput(true); con.setusecaches(false); // post方式不能使用缓存 // 设置请求头信息 con.setrequestproperty("connection", "close");//keep-alive con.setrequestproperty("charset", "utf-8"); // 设置边界 string boundary = "----------" + system.currenttimemillis(); con.setrequestproperty("content-type", "multipart/form-data; boundary=" + boundary); // 请求正文信息 // 第一部分: stringbuilder sb = new stringbuilder(); sb.append("--"); // ////////必须多两道线 sb.append(boundary); sb.append("\r\n"); sb.append("content-disposition: form-data;name=\"file_name\";filename=\"" + file.getname() + "\"\r\n"); sb.append("content-type:application/octet-stream\r\n\r\n"); sb.append("connection:close\r\n\r\n"); byte[] head = sb.tostring().getbytes("utf-8"); // 获得输出流 outputstream out = new dataoutputstream(con.getoutputstream()); out.write(head); // 文件正文部分 datainputstream in = new datainputstream(new fileinputstream(file)); int bytes = 0; byte[] bufferout = new byte[1024]; while ((bytes = in.read(bufferout)) != -1) { out.write(bufferout, 0, bytes); } in.close(); // 结尾部分 byte[] foot = ("\r\n--" + boundary + "--\r\n").getbytes("utf-8");// 定义最后数据分隔线 out.write(foot); out.flush(); out.close(); /** * 读取服务器响应,必须读取,否则提交不成功 */ return con.getresponsecode(); /** * 下面的方式读取也是可以的 */ // try { // // 定义bufferedreader输入流来读取url的响应 // bufferedreader reader = new bufferedreader(new inputstreamreader( // con.getinputstream())); // string line = null; // while ((line = reader.readline()) != null) { // system.out.println(line); // } // } catch (exception e) { // system.out.println("发送post请求出现异常!" + e); // e.printstacktrace(); // } } public static void main(string[] args) throws ioexception { fileupload up = new fileupload(); system.out.println(up.send("http://192.168.5.102:8845/xx", "./vif.xml")); ; } }
总结
以上所述是小编给大家介绍的java下http下载文件客户端和上传文件客户端实例代码,希望对大家有所帮助