开发工具 - sts 服务器 -tomcat 开发环境 windows 8.1 1.利用sts创建maven项目的时候总会出现这种情况-缺少目录 最快捷最简单的方法就是: 然后点击finish就可以看到: 但是我用MyEclipse这样操作的时候却不行,操作...
分类:
其他好文 时间:
2014-08-22 19:51:30
阅读次数:
313
Problem Description
There's a company with several projects to be done. Finish a project will get you profits. However, there are some technical problems for some specific projects. To solve the prob...
分类:
其他好文 时间:
2014-08-22 00:26:35
阅读次数:
195
--只获取数据库名称和最后的还原时间SELECT sdb.Name AS DatabaseName ,COALESCE(CONVERT(VARCHAR(12), MAX(bus.backup_finish_date), 101), '-') AS LastBackUpTimeFROM sys.sys...
分类:
数据库 时间:
2014-08-21 20:56:24
阅读次数:
271
overridePendingTransition(enterAnim, exitAnim);Intent intent =new Intent(this,item2.class);startActivity(intent);this.finish();overridePendingTransiti...
分类:
移动开发 时间:
2014-08-21 18:41:14
阅读次数:
222
android:configChanges="locale" 之后在不退出应用的情况下切换到Settings里切换语言,发现该Activity还是重启了。4.2中,app配置了configChanges locale属性后,当app处于后台,并没有finish时,如果改变语言,并不会在resume时...
分类:
移动开发 时间:
2014-08-21 13:10:04
阅读次数:
197
两种销毁 第一种是正常的销毁,比如用户按下Back按钮或者是activity自己调用了finish()方法;另一种是由于activity处于stopped状态,并且它长期未被使用,或者前台的activity需要更多的资源,这些情况下系统就会关闭后台的进程,以恢复一些内存。需要注意的是这其中有一种情况...
分类:
移动开发 时间:
2014-08-20 17:57:03
阅读次数:
258
当PHP运行在FastCGI模式时,PHP FPM提供了一个名为fastcgi_finish_request的方法.按照文档上的说法,此方法可以提高请求的处理速度,如果有些处理可以在页面生成完后再进行,就可以使用这个方法. 听起来可能有些茫然,...
分类:
其他好文 时间:
2014-08-20 10:40:07
阅读次数:
183
Intent intent1 = getIntent();
overridePendingTransition(0, 0);
intent1.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
finish();
overridePendingTransition(0, 0);
startActivity(intent1);
...
分类:
移动开发 时间:
2014-08-15 14:40:18
阅读次数:
224
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked 'Finish' in the diag...
分类:
其他好文 时间:
2014-08-15 09:32:37
阅读次数:
200
Eclipse导出Jar包,在工程中File-Export-JARfile-Next...-Finish,注意选择自己的程序MainClass,其中Jar包中的MANIFEST.MF文件包含了jar的主程序入口和依赖jar的存放位置等信息。Java-jarTest.jar导出Jar包后,如有外部包依赖,还要修改Jar包中的MANIFEST.MF文件Manifest-Vers..
分类:
系统相关 时间:
2014-08-15 02:58:37
阅读次数:
389