没有资源,可以添加或删除的服务器解决方式: 方式1、选中项目右键——找到Project
Facets——勾选Dynamic Web Project和java
方式2、新建一个同名web项目,把新建项目里面的.project文件和.settings文件夹复制到导入的那个项目里
分类:
其他好文 时间:
2014-06-04 19:02:58
阅读次数:
233
ConfigurationManager读取和写入 提供对客户端应用程序配置文件的访问
通过引入System.Configuration.dll可以用ConfigurationManager类来读取项目中保存在App.config中的配置信息,如:
...
分类:
其他好文 时间:
2014-06-04 19:03:39
阅读次数:
302
1.当导入第三方库出现不支持ARC模式,可以在项目-》Build
Phases中对第三方类文件添加Compiler Flags(-fno-objc-arc)2.获取UITableViewCell中所有子控件//
获取当前tableView中的所有cellNSArray *array = [self....
分类:
移动开发 时间:
2014-06-04 19:04:15
阅读次数:
239
场景描述:被测系统是发布在远程服务器上的,假设IP是10.10.10.10,端口是8066,那么访问地址是http://10.10.10.10:8066/,在control机器上我设置了IP欺骗。错误现象:在场景运行时出现大量Action.c(8):
Error -27796: Failed to ...
分类:
其他好文 时间:
2014-06-04 19:04:58
阅读次数:
1295
1. UITouch
的主要方法:C代码-(void)touchesBegan:(NSSet*)toucheswithEvent:(UIEvent*)event;-(void)touchesMoved:(NSSet*)toucheswithEvent:(UIEvent*)event;-(void)t...
分类:
其他好文 时间:
2014-06-04 19:06:53
阅读次数:
341
本文转载至http://sjh787291806.blog.163.com/blog/static/21396319620131015105856616/如果需要将UIView的4个角全部都为圆角,做法相当简单,只需设置其Layer的cornerRadius属性即可(项目需要使用QuartzCore...
分类:
移动开发 时间:
2014-06-04 19:06:15
阅读次数:
253
json数据类型格式:[{id:"1",code:"1",description:"博士"},{id:"2",code:"2",description:"硕士"},{id:"3",code:"3",description:"学士"}]//参考代码
public string DataTable...
分类:
Web程序 时间:
2014-06-04 19:05:38
阅读次数:
237
Given a string S and a string T, find the
minimum window in S which will contain all the characters in T in complexity
O(n).For example,S="ADOBECODEBA...
1、动态加载脚本(src 原理,异步,支持跨域)var loadScript = function
(url, callback) { var script = document.createElement("script"); script.src =
url; document...
分类:
编程语言 时间:
2014-06-04 19:11:32
阅读次数:
326
Given a collection of numbers that might
contain duplicates, return all possible unique permutations.For
example,[1,1,2]have the following unique perm...
分类:
其他好文 时间:
2014-06-04 19:10:54
阅读次数:
240
Given a collection of numbers, return all
possible permutations.For example,[1,2,3]have the following
permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:
其他好文 时间:
2014-06-04 19:10:16
阅读次数:
155
今天原本想模仿2048 游戏的。
但是在设计背景环境时,涉及到绘图的知识!于是就开始对绘图进行了一翻学习。 若想自己绘图必须 写自己的View(继承UICView);然后重写UIView
中的drawRect:rect 方法 -(void)drawRect:(CGRent)rect{ //...
分类:
其他好文 时间:
2014-06-04 19:09:33
阅读次数:
243
1.复制新表结构及数据到新表create table 新表 select * from
旧表2.只复制表结构到新表create table 新表 select * from 旧表 where
1=23.复制旧表的数据到新表(假设两个表结构一样)insert into 新表 select * fr.....
分类:
数据库 时间:
2014-06-04 19:08:52
阅读次数:
280
对于 .net framework 中的代码,光拿 Reflector
看是不够过瘾的,如果能够调试进去就好了!其实,微软是提供了一套 sourcecode
的下载的:http://referencesource.microsoft.com/netframework.aspx下载后运行安装文件把 s...
分类:
Web程序 时间:
2014-06-04 19:08:14
阅读次数:
202
源地址:http://yanshuaijun.2010.blog.163.com/blog/static/362411622011102443056225/主题:mysql
error nr.1045 解决方法2011-11-24 16:30:56|分类:mysql|举报|字号订阅1.进入cmd手动...
分类:
数据库 时间:
2014-06-04 19:12:06
阅读次数:
244
Givennnon-negative integers representing an
elevation map where the width of each bar is 1, compute how much water it is
able to trap after raining.Fo...
分类:
移动开发 时间:
2014-06-04 19:15:23
阅读次数:
345
今天看到一篇文章介绍2012中的分页,就想测试一下新的分页方法比原先的有多少性能的提升,下面是我的测试过程(2012的分页语法这里不在做多的说明,MSDN上一搜就有):
首先我们来构造测试数据: --建表CREATE TABLE [dbo].[MyCustomer]( [id] [int] ...
分类:
数据库 时间:
2014-06-04 19:14:47
阅读次数:
317