怡然黑夜

文章
5
资源
0
加入时间
2年10月21天

Android计算图片占用内存

图片(Bitmap)占用内存计算公式: 图片长度 * 图片宽度 * 单位像素占用的字节数单位像素占用的字节数与图片解码方式有关:https://developer.android.com/reference/android/graphics/Bitmap.Config.htmlALPHA_8:只存储透明度,不存储颜色值,单位像素占用一

jsp获取url路径

假如请求的URL是 http://localhost:8080/test/index.jsp//输出:httprequest.getScheme() //输出: localhostrequest.getServerName() //输出: 8080request.getServerPort() //输出: /testrequest.getContextPath() //输出: /index.jsprequest.getRequestPath() /.