1. 管理员登陆系统,停止mysql服务或者结束mysqld-nt进程2. 进入命令行,来到mysql的安装目录.假设安装目录为 d:\mysql\ , CMD进入命令行3. 运行 d:\mysql\bin\mysqld-nt --skip-grant-tables 启动mysql,关闭权限的检查4
分类:
数据库 时间:
2016-02-14 14:10:14
阅读次数:
261
对于程序开发的学者来说,eclipse并不陌生,它为我们提供了一个非常广阔的平台来开发程序。同样我们也可以用它来开发android程序。但是在eclipse中并不能直接开发android程序,需要我们安装一个ADT插件。下面就介绍ADT插件的安装。 在eclipse中集成adt插件 工具/原料 ec
分类:
系统相关 时间:
2016-02-14 14:10:40
阅读次数:
263
1. 分析kafka源码的目的 深入掌握kafka的内部原理 深入掌握scala运用 2. server的启动 如下所示(本来准备用时序图的,但感觉时序图没有思维图更能反映,故采用了思维图): 2.1 启动入口Kafka.scala 从上面的思维导图,可以看到Kafka的启动入口是Kafka.sca
分类:
其他好文 时间:
2016-02-14 14:11:29
阅读次数:
523
动画类型Android的animation由四种类型组成XML中 alpha 渐变透明度动画效果 scale 渐变尺寸伸缩动画效果 translate 画面转换位置移动动画效果 rotate 画面转移旋转动画效果 JavaCode中 AlphaAnimation 渐变透明度动画效果 ScaleAni
分类:
移动开发 时间:
2016-02-14 14:11:47
阅读次数:
212
<Engine name="Catalina" defaultHost="www.abc.com"> <Host name="www.abc.com" appBase="/home/www/abc" unpackWARs="true" autoDeploy="true" xmlValidation=
分类:
其他好文 时间:
2016-02-14 14:11:47
阅读次数:
240
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString *,id> *)options//新方法 application:(UIApplication *)applica
分类:
移动开发 时间:
2016-02-14 14:11:04
阅读次数:
327
子类由两部分构成,一部分是继承的父类,另一部分是自己新增加的元素,访问父类元素的方式[子类对象].[父类名]::[父类元素] 构造时,先构造父类部分,再构造自身部分(先构造a,b,,再构造c,d,e) 析构时,先析构自身部分,再析构父类部分.(先析构c,d,e,再析构a,b)
分类:
其他好文 时间:
2016-02-14 14:08:39
阅读次数:
222
转自: https://github.com/kaiye/kaiye.github.com/issues/7 在掌握了基础的 Git 使用 之后,可能会遇到一些问题。以下是猫哥筛选总结的部分常见问题,分享给各位朋友,掌握了这些问题的中的要点之后,git 进阶也就完成了,它包含以下部分: 如何修改 o
分类:
其他好文 时间:
2016-02-14 14:10:25
阅读次数:
352
JDBC的一般流程: 1. 加载某个数据库的驱动(Driver类),通常使用Class.forName(“驱动的类名“); 2. 连接数据库―― Connection con = DriverManager.getConnection(url,username,password); 3. 得到会话―
分类:
数据库 时间:
2016-02-14 14:09:13
阅读次数:
225
Problem Description AFA want to distribution her money to somebody.She divide her money into n same parts.One who want to get the money can get more t
分类:
其他好文 时间:
2016-02-14 14:08:31
阅读次数:
230
今天使用到shape,这个里面有很多属性,在这里我记录一下各个属性的使用的情况以及所代表的意思 <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/androi
分类:
移动开发 时间:
2016-02-14 14:09:21
阅读次数:
262
Xcode"Archive"把当前设备设置成连接的真机设备或者默认的"iOS Device","Archive"会变成黑色。 Archive --> 右键生成的Archive文件 --> Show in Finder --> 右键xxx.xcarchive文件 --> 显示包内容 --> 找到真正的
分类:
移动开发 时间:
2016-02-14 14:06:59
阅读次数:
219
跟java.lang这个包的作用类似,Commons Lang这一组API也是提供一些基础的、通用的操作和处理,如自动生成toString()的结果、自动实现hashCode()和equals()方法、数组操作、枚举、日期和时间的处理等等。 这一组API的所有包名都以org.apache.commo
分类:
其他好文 时间:
2016-02-14 14:09:03
阅读次数:
269
原文网址:http://blog.csdn.net/zhangjs0322/article/details/39048939 Android低功耗蓝牙应用程序开始时获取到的蓝牙血压计所有服务的UUID如下所示: 08-28 09:05:48.488: D/BluetoothGatt(4251): o
分类:
移动开发 时间:
2016-02-14 14:07:06
阅读次数:
221
Given a binary tree, find the largest subtree which is a Binary Search Tree (BST), where largest means subtree with largest number of nodes in it. Not
分类:
其他好文 时间:
2016-02-14 14:07:34
阅读次数:
1576
这个。乱搞。 #include<iostream>#include<cstdio>#include<cstring>#include<cmath>#define maxn 100005using namespace std;int n,inf=99999999;double dot[maxn][5]
分类:
其他好文 时间:
2016-02-14 14:07:45
阅读次数:
191
Solr是一个高性能的、带有高级特性,比如faceting(arranging search results in columns with numeric counts of key terms)的搜索程序。Solr构建于Lucene之上。Lucene是一个提供索引、查询、拼写检查、关键字高亮和分
分类:
其他好文 时间:
2016-02-14 14:05:45
阅读次数:
277