2020年5月26日
摘要: //将字符串转换成byte数组 public static byte[] fileToBytes(String filePath) { byte[] buffer = null; File file = new File(filePath); FileInputStream fis = null; 阅读全文
posted @ 2020-05-26 11:13 文种玉 阅读(158) 评论(0) 推荐(0) 编辑