Java 把文件上传到服务器

import java.io.File;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.WebResource;
 
/**
 * 文件上传帮助类
 * @author yaco
 * @Date 2019年7月18日 下午2:16:09
 */
public class UploadUtils {
 
	/**
	 * 上传到文件服务器
	 * @author: yaco
	 * @Date  : 2019年7月18日 下午4:26:57  
	 */
	public static String uploadFile(byte[] file, String filePath, String fileName) throws Exception {
		File targetFile = new File(filePath);
		if (!targetFile.exists()) {
			targetFile.mkdirs();
		}
		Client client = new Client();
		WebResource resource = client.resource(filePath + fileName);
		resource.put(String.class, file);
		return filePath + fileName;
	}
}
 


	com.sun.jersey
	jersey-client
	1.19.4


	org.glassfish.jersey.core
	jersey-client

 

你可能感兴趣的:(Java,java,文件上传,java文件上传远程服务器,java,本地上传到服务器)