摘要: <!DOCTYPE html> <html> <head> <title>html5响应式九宫格</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" con 阅读全文
posted @ 2019-11-12 09:26 小马神B 阅读(116) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_35840038/article/details/80655281 阅读全文
posted @ 2019-10-14 15:18 小马神B 阅读(199) 评论(0) 推荐(0) 编辑
摘要: https://cloud.tencent.com/developer/article/1465684 7个较火的前端框架 https://www.jianshu.com/p/851c8b4f5d07 阅读全文
posted @ 2019-10-10 13:43 小马神B 阅读(1230) 评论(0) 推荐(0) 编辑
摘要: *字符串转化为Unicode编码: *字符串转为16进制 *16进制转为字符串 *Unicode转为字符串 此方法虽然解决了转化过程中中文乱码的问题,但是过于复杂,笔者后来又发现一种新的转化方式,可直接转化,中文不乱码,代码如下: *字符串转16进制 *16进制转为字符串 阅读全文
posted @ 2019-09-19 16:14 小马神B 阅读(8310) 评论(0) 推荐(0) 编辑
摘要: 1. "hamburger".substring(3,8) returns "burge" "smiles".substring(0,5) returns "smile" var str = "http://www.bdyinheiot.net/WXServer/index.jsp?a=1&b=2& 阅读全文
posted @ 2019-09-18 09:55 小马神B 阅读(442) 评论(0) 推荐(0) 编辑
摘要: . 16进制的byte与String转换16进制字符串转byte String str = "A5";byte res = (byte) Integer.parseInt(str, 16)1216进制byte转String字符串 String res = String.format("%02x", 阅读全文
posted @ 2019-09-18 09:43 小马神B 阅读(226) 评论(0) 推荐(0) 编辑
摘要: Java string和各种格式互转 string转int int转string Java string和各种格式互转 string转int int转string 简单收集记录下 其他类型转String String s = String.valueOf( value); // 其中 value 为 阅读全文
posted @ 2019-09-18 09:34 小马神B 阅读(134) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/hackyo/p/6646051.html 阅读全文
posted @ 2019-09-17 15:00 小马神B 阅读(110) 评论(0) 推荐(0) 编辑