异常提示:gen already exists but is not a source folder.
Convert to a source folder or rename
it.错误原因:我在导入以前的项目的时候出现了这个异常,原因是.classpath文件(这个文件在eclipse中是看不到...
分类:
其他好文 时间:
2014-05-19 22:15:03
阅读次数:
357
异常提示:gen already exists but is not a source folder.
Convert to a source folder or rename
it.错误原因:我在导入以前的项目的时候出现了这个异常,原因是.classpath文件(这个文件在eclipse中是看不到...
分类:
其他好文 时间:
2014-05-19 21:43:51
阅读次数:
303
if exists(select * from master.sys.sysprocesses
where spid in (select blocked from
master.sys.sysprocesses))begin---确定进程被锁住的其他资源select spid 进程,STATUS ...
分类:
其他好文 时间:
2014-05-16 06:38:48
阅读次数:
329
数据库: create database|schema [if not exists]
db_name [character set =] [collate =]; alter database drop {database | schema}
[if exists] db_name;表: ...
分类:
数据库 时间:
2014-05-15 21:22:26
阅读次数:
463
IF EXISTS ( --判断是否存在合符条件的记录 SELECT TOP ( 1 ) 1 FROM
[DCL].[SecurityUser] WHERE [U...
分类:
数据库 时间:
2014-05-15 20:51:00
阅读次数:
336
如果你仅仅是要检查一个document是否存在,而对document的内容不感兴趣,你可以使用HEAD进行查询curl -i -XHEAD
/website/blog/123如果document存在将会返回如下数据:HTTP/1.1200 OKContent-Type: text/plain;
ch...
分类:
其他好文 时间:
2014-05-15 17:07:40
阅读次数:
293
// 创建保存照片文件夹
private void CreateFileJPG() {
File file = new File("/sdcard/image");
if (!file.exists()) {
try {
file.mkdirs();
} catch (Exception e) {
// TODO: handle exceptio...
分类:
移动开发 时间:
2014-05-15 06:39:58
阅读次数:
434
【题目】
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring.
【题意】
题意是找出字符串S中最长回文子串,S最长为1000,保证有唯一解
【思路】
原字符串用特殊字符#间隔,如下所示:
#a...
分类:
其他好文 时间:
2014-05-15 03:31:25
阅读次数:
299
一、 创建表
在官方的wiki里,example是这样的:
Sql代码
CREATE [EXTERNAL] TABLE [IF NOT EXISTS] table_name [(col_name data_type [COMMENT col_comment], ...)] [COMMENT table_comment] [PARTITION...
分类:
数据库 时间:
2014-05-14 14:50:27
阅读次数:
463
1 首先是try,catch getMessage();}function
file_open($path){ if(!file_exists($path)) //如果文件无法找到,抛出异常对象 { throw new
Exception("文件无法找到", 1); } if(!f...
分类:
Web程序 时间:
2014-05-14 13:19:14
阅读次数:
427