摘要: public static byte[] urlTobyte(String url) throws MalformedURLException { URL ur = new URL(url); BufferedInputStream in = null; ByteArrayOutputStream out = null; try { ... 阅读全文
posted @ 2016-03-16 13:42 也许还年轻 阅读(5163) 评论(0) 推荐(0) 编辑