向原创致敬http://blog.csdn.net/kfqcome/article/details/10159057一 创建和使用脚本1 概述GameObject的行为都是被附加到其上面的组件控制,脚本本质上也是一个组件。在unity中创建一个脚本,默认内容如下:[csharp]view plain...
分类:
编程语言 时间:
2015-03-18 17:33:21
阅读次数:
192
场景:1、在windows 7上安装了visual svn server作为自己的svn服务器。 2、在虚拟机centos 6.3上使用svn客户端check代码,报错: [plain]view plaincopyprint?#svncheckouthttps://192.168.0.104:84....
分类:
系统相关 时间:
2015-03-18 08:55:54
阅读次数:
188
在进行发邮件的时候抛出的这个异常:
IOException while sending message; nested exception is: javax.activation.UnsupportedDataTypeException: no object DCH for MIME type text/plain; charset=UTF-8
检查在站点的lib文件夹下和在tom...
分类:
其他好文 时间:
2015-03-16 17:54:27
阅读次数:
163
POJO,Plain Old Java Object,简单的Java对象。
发布Webservice
1.编写Hello.java
public class Hello {
public String sayHello(){
return "hello";
}
public String sayHelloToPerson(String name){
if(name=...
分类:
其他好文 时间:
2015-03-14 15:26:53
阅读次数:
197
一、CSS HACK以下两种方法几乎能解决现今所有HACK.翻阅很多资料,已测试可以使用。1, !important随着IE7对!important的支持, !important 方法现在只针对IE6的HACK.(注意写法.记得该声明位置需要提前.)PLAIN TEXTCSS:#wrapper{wi...
分类:
Web程序 时间:
2015-03-13 16:19:44
阅读次数:
203
今天在看《spring技术内幕》,第一章中多次提到了使用POJO来完成开发,就百度了一下,在此保留1.什么是POJOPOJO的名称有多种,pure old java object、plain ordinary java object等。按照Martin Fowler的解释是“Plain Old Ja...
分类:
编程语言 时间:
2015-03-13 16:05:38
阅读次数:
231
http://www.md5decrypter.co.uk/MD5Decrypter(uk)http://plain-text.info/add/Plain-Texthttp://crackfoo.nicenamecrew.com/Crackfoo -NNChttp://hashcrack.com/...
分类:
其他好文 时间:
2015-03-13 12:22:08
阅读次数:
305
NodeJs 官方代码:example.js httpvar http = require('http');http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}...
分类:
Web程序 时间:
2015-03-11 12:21:41
阅读次数:
743
//分享文字
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT, "要分享的文本。");
intent.setType("text/plain");
startActivity(Intent.createChooser(intent, "分享"));
//分享图片
Uri uri =...
分类:
其他好文 时间:
2015-03-11 10:53:31
阅读次数:
162
POJO(Plain Ordinary Java Object)简单的Java对象,实际就是普通JavaBeans,是为了避免和EJB混淆所创造的简称。...
分类:
其他好文 时间:
2015-03-10 21:38:32
阅读次数:
119