摘要:
public void saveToFile(String destUrl) { FileOutputStream fos = null; BufferedInputStream bis = null; HttpURLConnection httpUrl = null; URL url = null; intBUFFER_SI... 阅读全文
摘要:
impala 四舍五入后转换成string后又变成一个double的数值解决(除不尽的情况)例如Query: select cast(round(2 / 3, 4)*100 as string)+ +| cast(round(2 / 3, 4) * 100 as string) |+ +| 66.6 阅读全文
摘要:
先将100000000*1000 的结果转化为二进制: 10111 01001000 01110110 11101000 00000000 由于int类型表示的最大值是32位即:01001000 01110110 11101000 00000000,前面的10111属于溢出部分 将01001000 阅读全文