摘要:
scaleType的值分别代表的意义:ImageView是Android中的基础图片显示控件,该控件有个重要的属性是scaleType,该属性用以表示显示图片的方式,共有8种取值scaleType.center:图片大小为原始大小,如果图片大小大于ImageView控件,则截取图片中间部分,若小于,... 阅读全文
摘要:
james:1、解压缩2、先运行一遍3、修改配置 apps\james\SAR-INF\config.xml(1)postmaster(2)servername localhost --> abc@localhost j08.com --> abc@j08.com 自动检查名称和IP设为f... 阅读全文
摘要:
name value在servlet中读取 String num = servletContext.getInitParameter("name"); 阅读全文
摘要:
java InputStream读取数据问题1. 关于InputStream.read() 在从数据流里读取数据时,为图简单,经常用InputStream.read()方法。这个方法是从流里每次只读取读取一个字节,效率会非常低。 更好的方法是用InputStream.read(byte[] b)或者... 阅读全文
摘要:
/** * 创建XMLHttpRequest对象 */function createXMLHttpRequest() { var xmlHttp = null; if (window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); // fire... 阅读全文
摘要:
//判断输入的字符串是否大于指定长度function checkstr(str,digit){ var n=0; for(i=0;i255){ n+=2; }else { n+=1; } } i... 阅读全文
摘要:
package com.wgh.model;import java.sql.Connection;import java.sql.DriverManager;import java.util.LinkedHashMap;import java.util.Map;public class CityMa... 阅读全文
摘要:
package com.sec.util;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.... 阅读全文
摘要:
package com.sec.util;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;public class DateTimeUtil { /** * string... 阅读全文
摘要:
package com.sec.util;import java.security.MessageDigest;import java.security.NoSuchAlgorithmException;/** * 密码加密md5 * * @author Administrator * */pu... 阅读全文