package com.wtf.demo.socket; import javax.net.ssl.SSLSocket;import javax.net.ssl.SSLSocketFactory;import java.io.*; /** * Created by wtf on 2015/12/28. */public class HTTPSClient { public static v ...
public BufferedImage rotate90DX(BufferedImage bi){ int width = bi.getWidth(); int height = bi.getHeight(); BufferedImage biFlip = new BufferedImage(height, width, bi.getType()); ...