`
文章列表
/** * 得到本周周一 * * @return yyyy-MM-dd */ public static String getMondayOfThisWeek() { Calendar c = Calendar.getInstance(); int dayofweek = c.get(Calendar.DAY_OF_WEEK) - 1; if (dayofweek == 0) dayofweek = 7; c.add(Calendar.DATE, -dayofweek + 1); SimpleDateFormat sdf = ...
当form表单中的数据是基本类型的时,直接请求action中的url,一点问题都没有。 但是当form表单总有时间类型的数据时,且对应的controller是用一个java对象来绑定对应form提交的数据时,就会出现问题。无法提交成功。 解决办法: 在对应的controller中新增下面的方法: /** * form表单提交 Date类型数据绑定 * <功能详细描述> * @param binder * @see [类、类#方法、类#成员] */ @InitBinder public v ...
仿百度搜索,用的基本的js事件和ajax请求,服务器后端返回xml类型,代码比较齐全,基本上可以直接使用。 <style> #auto_div{ position:absolute; border-width:1px; border:1px #808080 solid; } </style> <input type="text" name="userName" id="auto_txt" value=""/> < ...
在做一个医疗设备的项目的时候由于涉及到心电图数据的解析,因为解析只能依靠c,所以需要java调用c生成的动态库去解析数据。     因为用JNI调用Linux下的动态库,要求java类名和动态库中的名保持一致,所以只能通过生成一 ...
一般我们在Linux下执行某些外部程序的时候可能会提示找不到共享库的错误, 比如:tmux: error while loading shared libraries: libevent-1.4.so.2: cannot open shared object file: No such file or directory原因一般有两个, 一个是操作系统里确实没有包含该共 ...
// 要给对象赋值的数据 Map jsonMap = (Map) JSONObject.parse(jsonData); // 获得对象list List<DiagnosisRelation> diaList = diagnosisRelationService.getAllList(); Method[] method = diagnosisPra.getClass().getDeclaredMethods(); for (int j = 0; j < diaList.size(); j++) { String fieldName = "s ...
::2  受信任的站点区域 ::::--ActiveX 控件自动提示  -禁用 REG add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\2" /v "2201" /t reg_dword /d 0x00000003 /f   ::::--对未标记为可安全执行脚本的ActiveX控件初始化并执行脚本  -启用 REG add "HKEY_CURRENT_USER\Software\Microsoft\Wind ...
Global site tag (gtag.js) - Google Analytics