上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 57 下一页
摘要: 在使用在登录PL/SQL(使用scott用户)无法登录,提示错误:ORA-01017: invalid username/password; logon denied 错误(程序中的用户和密码无法登录,登录被拒) 解决方法: 1. window 键 + r 打开cmd: 输入sqlplus 通过sy 阅读全文
posted @ 2017-12-18 14:56 毛会懂 阅读(2508) 评论(0) 推荐(0) 编辑
摘要: 找到并进入运行窗口:(可以用windows+r快捷键哦)输入sqlplus命令:如图 找到并进入运行窗口:(可以用windows+r快捷键哦)输入sqlplus命令:如图 进入新窗口后使用scott/tiger用户和密码进行登录会发现登录不成功:如图 进入新窗口后使用scott/tiger用户和密码 阅读全文
posted @ 2017-12-18 13:56 毛会懂 阅读(12955) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-12-18 13:39 毛会懂 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Oracle安装时先决条件检查失败的解决方案: 环境说明: 安装环境:Win7-64bit专业版,内存6G,硬盘空间足够 安装版本:Oracle Database 11g Release 2 (11.2.0.1.0) for Microsoft Windows (x64) 安装文件为win64_11 阅读全文
posted @ 2017-12-18 13:36 毛会懂 阅读(382) 评论(0) 推荐(0) 编辑
摘要: import java.io.IOException;import java.io.PrintWriter;import java.io.StringWriter;import java.security.GeneralSecurityException;import java.text.Parse 阅读全文
posted @ 2017-12-18 09:45 毛会懂 阅读(289) 评论(0) 推荐(0) 编辑
摘要: /** * @function getAge * @param birthday:用户孩子的生日 * @description 获取用户孩子的年龄(含年月日) * @return DateVO:用户年龄 * @author maohuidong * @date 2017-05-04 */ publi 阅读全文
posted @ 2017-12-18 09:44 毛会懂 阅读(238) 评论(0) 推荐(0) 编辑
摘要: import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Date; public class CountDays { /*public s 阅读全文
posted @ 2017-12-18 09:41 毛会懂 阅读(459) 评论(0) 推荐(0) 编辑
摘要: import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;import java.util.TimeZone; public class DateFormat { //时间格式 pr 阅读全文
posted @ 2017-12-18 09:39 毛会懂 阅读(251) 评论(0) 推荐(0) 编辑
摘要: /** * @title HttpUtils * @description post请求封装 * @author maohuidong * @date 2017-12-18 */ public static class HttpUtils { /** * 定义编码格式 UTF-8 */ public 阅读全文
posted @ 2017-12-18 09:31 毛会懂 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 一、Observer模式的意图: 在对象的内部状态发生变化时,自动通知外部对象进行响应。 二、Observer模式的构成: ·被观察者:内部状态有可能被改变,而且又需要通知外部的对象 ·观察者:需要对内部状态的改变做出响应的对象 三、Observer模式的Java实现: Java的API中已经为我们 阅读全文
posted @ 2017-12-16 11:38 毛会懂 阅读(1019) 评论(0) 推荐(0) 编辑
上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 57 下一页