摘要:
public static int ushorts2int(ushort[] res) { int high = res[0]; int low = res[1]; int value = (high << 16) + low; return value; } public static ushor 阅读全文
摘要:
HttpClientHandler hand = new HttpClientHandler(); ProgressMessageHandler processMessageHander = new ProgressMessageHandler(hand); HttpClient localHttp 阅读全文