摘要:
/* DES解密 */ public static String decrypt(String message, String key) throws Exception { byte[] bytesrc = Base64.decode(message); //convertHexString(me 阅读全文
摘要:
package com.egoo.vl.crm.baselog.task; import cn.hutool.core.util.StrUtil; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObjec 阅读全文
摘要:
持久化API(不用写SQL,用的普通写法,不是Crud写法) Controller层 import com.egoo.vl.crm.baselog.domain.history.summary.HistorySummary; import com.egoo.vl.crm.baselog.servic 阅读全文
摘要:
Controller层 package com.egoo.vl.crm.baselog.controller.baselog;import com.egoo.bdp.edp.baselog.entity.BaselogDialogueInfoEntity;import com.egoo.vl.crm 阅读全文
摘要:
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>ZHANGJUN</title> </head> <script type="text/javascript"> functi 阅读全文
摘要:
1.安装MySQL数据库,建立用户表 uid uname upwd 并插入3条数据 2.制作jsp登录页面 login.jsp 提交到dologin.jsp,使用jdbc连数据库,判断输入的用户名密码是否存在 3.如果存在,把用户名保存在SESSION中,跳转到welcome.jsp,welcome 阅读全文
摘要:
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>$Title$</title> </head> <script type="text/javascript"> functio 阅读全文
摘要:
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <html> <head> </head> <body> <% out.print("<table>"); for (int i = 1; i <= 3; i++ 阅读全文
摘要:
1.什么是软件缺陷?软件缺陷的产生对软件有什么影响? 软件缺陷就是软件产品中所存在的问题,最终表现为用户所需要的功能没有完全实现,不能满足或不能全部满足用户的需求。 从产品内部看,软件缺陷是软件产品开发或维护过程中所存在的错误、误差等各种问题。 从外部看,软件缺陷是系统所需要实现的某种功能的失效或违 阅读全文