org.apache.catalina.core.StandardServer await SEVERE: StandardServer.await: create[8005]: java.net.BindException: Cannot assign requested add...
分类:
编程语言 时间:
2014-06-27 00:14:10
阅读次数:
494
//获取客户端、服务器、本地IP地址 public static string getIPAddress() { ////本地IP //string address = System.Net.Dns.GetHostAddress...
分类:
其他好文 时间:
2014-06-26 23:47:30
阅读次数:
193
git提交代码时,出现这个错误“error: The requested URL returned error: 403 Forbidden while accessing https” 解决方法: 编辑.git文件夹下的config文件就可以。vim .git/config#改动对于的...
分类:
数据库 时间:
2014-06-26 23:42:11
阅读次数:
2062
转载地址:http://blog.csdn.net/donglynn/article/details/17056099错误SQL 查询:DELETE FROM `zmax_lang` WHERE CONVERT( `zmax_lang`.`lang` USING utf8 ) = 'fr' ...
分类:
其他好文 时间:
2014-06-26 21:31:40
阅读次数:
204
Warning: Cannot modify header information - headers already sent by出错的原因我在php程序的头部加了,header("cache-control:no-cache,must-revalidate");之后页面就出现上面的错误,看了N...
分类:
其他好文 时间:
2014-06-26 18:41:36
阅读次数:
167
今天重写 -(id) initwithId:(NSInteger *)word_id word:(NSString *)word detail:(NSString *)detail方法时不注意将init后面的第一个字母写成了小写,在这个方法里面又调用父类的初始化方法(self = [super in...
分类:
移动开发 时间:
2014-06-26 15:17:17
阅读次数:
638
向量定义 R在实际应用中比较常用的一个对象就是向量(Vector)。向量的创建格式为 向量名 = c(x1,x2,x3,…..)或 向量名 向量名或 Assign("向量名", c(x1,x2,x3,…..)),c()为向量赋值函数,c()可以有任意多个参数,而起返回值则是一个把这些参数首尾相连.....
分类:
其他好文 时间:
2014-06-26 15:13:59
阅读次数:
150
设定IP$sudo gedit /etc/network/interfaces auto lo iface lo inet loopbackauto eth0 iface eth0 inet static address 192.168.0.111netmask 255.255.255.0 gate...
分类:
其他好文 时间:
2014-06-26 14:43:05
阅读次数:
236
例子:使v1的内容和v2的后半部分相同的最简单操作是什么?看下面四个答案:
①v1.assign(v2.begin()+v2.size()/2,v2.end());
②v1.clear();
copy(v2.begin()+v2.size()/2,v2.end(),back_inserter(v1));
③v1.insert(v1.end(),v2.begin...
分类:
其他好文 时间:
2014-06-26 13:28:22
阅读次数:
222
1、首先,打开VS创建两个List Definition,分别是Address和City,如下图:
2、City列表里修改Title为City Name,其实内部名称还是Title,注意一下:
3、给City的列表实例,添加几个值,用来测试使用,如下:
4、在Address列表里添加几个字段,分别是CityName(LookUp类型)和HomeAddress(Sing...
分类:
其他好文 时间:
2014-06-26 06:43:11
阅读次数:
306