本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
zysnba - xiangjie88
- sgqt
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wallimn
- wy_19921005
- vipbooks
- benladeng5225
- 龙儿筝
- javashop
- ranbuijj
- fantaxy025025
- zw7534313
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- jh108020
- wiseboyloves
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- lemonhandsome
- jbosscn
- mengjichen
- zxq_2017
- luxurioust
- lzyfn123
- forestqqqq
- nychen2000
- Xeden
- zhanjia
- wjianwei666
- ajinn
- hanbaohong
- 喧嚣求静
- jickcai
- kingwell.leng
- mwhgJava
- silverend
- lich0079
- lchb139128
最新文章列表
windows7: emulator: could not find virtual device named 'avd3.1'
若遇到ERROR: unknown virtual device name 这样的问题一般是由于创建的文件路径引用错误造成的。比如Vista可以设置用户文件到F盘下。这样在用Eclipse或者从命令行创建Android Emulator时,相应的文件是被放置到 “F:\Users\<username>\.android“ 下面了,而程序运行时仍然从 “C:\Users\<usern ...
ruby读取文件操作
1、文件的打开与关闭
``r'' Read-only, starts at beginning of file (default mode).
``r+'' Read-write, starts at beginning of file.
``w'' Write-only, truncates existing file to zero length or creates a ...
MKMapView响应touch事件
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px 'Lucida Grande'; color: #929292}
TapDetectingWindow.h
//
// plist>
// NBFisheryiPad
//
// Created by shiqyn on 11-6-16.
// ...
非常蛋疼的JavaScript试题
JavaScript有很多地方和我们熟知的C、Java等的编程习惯不同,这些不同会产生很多让人意想不到的事情。前段时间在知乎有人发了写Javascrtip试题,觉得挺好玩的,这里跟大家分享一下。
01
view sourceprint?
1 (function () {
2 return typeof arguments;
3 })();
...
sql语句中的执行顺序
1.from
2.where(结合条件)
3.start with
4.connect by
5.where
6.group by
7.having
8.分析函数,分析函数是在SELECT和ORDER BY之前做的,分析函数因此可以放在SELECT和ORDER BY中,其他操作中不可有分析函数
8.model
9.select
10.union,minus,intersect
11.order by ...
递归遍历文件
public class Test {
public static void main(String []args) {
File f = new File("E:\\个人资料");//给定目录
System.out.println(f.getName());//打印出根目录名
listFile(f,1);
...
知足常樂
人容易在追逐夢想的同時忘記知足,因為它們貌似是明顯矛盾的對立面,知足了還會去追逐夢想嗎?貌似不滿足才會去追求夢想吧,如果有了A,再夢想著B,是不是會忽略了A的存在?我想大概it depends。有說A和B根本是兩樣東西,根本不搭界,我有A,但也要B,我滿足于A,同時追求B,這點我認同。但有一點,追逐是因渴望、信念而生,追逐是想要讓沒有變成有,即無中生有,對此無肯定是持否定態度的!?如果肯定,又何必去 ...
linux下递归遍历文件夹下所有目录的函数
function ergodic(){ #下面是定义一个函数
for file in ` ls $1 `
do
if [ -d $1"/"$file ]
then
curDir=$1"/"$file
echo $curDir >> fileName.txt
ergodic $1"/&quo ...
eclipse颜色设置以及常用快捷键
Eclipse本身很快的,但是加上了myeclipse后,就狂占内存,而且速度狂慢,那如何让Eclipse拖着myeclipse狂飚呢?这里提供一个:
技巧:取消自动validation
valid ...
ASP.NET程序中常用代码汇总
///<summary>///名称:IsNumberic///功能:判断输入的是否是数字///参数:stringoText:源文本///返回值: booltrue:是 false:否///</summary>publicboolIsNumberic(stringoText)
Ajax控件--FilteredTextBox,Calendar,ModalPopup
NO1.在atlas(ajax)中请不要使用Response.Write(),请使用ClientScript.RegisterClientScriptBlock替换使用如下:ClientScript.RegisterClientScriptBlock(this.GetType(), "", "<script>alert('自己看着办!')</sc ...