自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(14)
  • 资源 (1)
  • 收藏
  • 关注

转载 Unity开发者总结的5点工作经验

Unity是一个非常强大的游戏开发工具,原因有很多,其中之一是它的组件导向式的平台设计得非常清楚、简洁。例如,很容易在一两天内把一些代码拼凑在一起做简单可用的原型。然而,除了它的多功能以外,经过几年的实践,我发现有些东西用Unity做尤其管用。对于我的新游戏《The Fall》,我做了多次实践。结果是,开发过程顺畅、迅速、容易,漏洞比我上一款游戏少了许多。为了庆祝《The Fall》的诞生

2014-03-02 10:43:11 696

原创 使用XPathExpression的AddSort方法获得排序的Xml解析结果的代码

using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Xml;using System.Xml.XPath;namespace ConsoleTestApp

2014-02-13 23:39:31 762

转载 ASP.NET内置对象之Session ,Cookie ,Application

转自:http://www.cnblogs.com/aito/archive/2010/08/07/1794730.html做asp.net开发时无需new就能使用的对象,如:  Request ,Response ,Server ,Session ,Cookie ,Application 在asp.net中所有的网页都是继承自System.Web.UI.Page这个类。由于H

2014-02-08 22:57:49 950

原创 用Java自带API解析XML字符串和生成XML字符串的例子

Parse XML String and create XML String Sample Using Java DOM APIpackage g002.javaxmltest;import java.io.ByteArrayInputStream;import java.io.StringWriter;import java.nio.charset.Charset;imp

2014-01-19 14:12:37 2289 1

转载 Parse XML Using Java DOM API

Java XPath Tutorial: How To Parse XML File Using XPath In JavaBy Viral Patel on May 13, 2013XPath is a language for finding information in an XML file. You can say that XPath is

2014-01-19 12:04:17 1200

转载 Dom4j快速入门

Parsing XMLOne of the first things you'll probably want to do is to parse an XML document of some kind. This is easy to do in dom4j. The following code demonstrates how to this.import java.net.URL

2013-12-22 23:35:05 517

转载 XPath语法详解

XPath 示例本主题回顾整个 XPath 参考中出现的语法示例。所有示例均基于本节后所附 《XPath 语法的示例 XML 文件》。表达式 引用./author当前上下文中的所有  元素。注意,此表达式等效于下一行中的表达式。author当前上下文中的所有

2013-12-22 23:11:24 9039

转载 eclipse maven plugin 插件 安装 和 配置

出处:http://www.blogjava.net/fancydeepinmaven3 安装:    安装 Maven 之前要求先确定你的 JDK 已经安装配置完成。Maven是 Apache 下的一个项目,目前最新版本是 3.0.4,我用的也是这个。    首先去官网下载 Maven:http://www.apache.org/dyn/closer.cgi/ma

2013-12-22 16:32:02 610

翻译 JUnit的验证方法一览

assertEquals(a, b)Tests if a is equal to b (a and b are either primitive values or must have an equals method for comparison purposes)测试a和b是否相等。a和b或者都是简单类型,或者都有用于对象类型比较的equals方法assertFalse

2013-12-22 15:37:33 989

原创 [Error generating final archive: Debug certificate expired on …]问题解决方法

Android开发搁置了好长一段时间,今天打开Eclipse,编译项目,插上HTC,运行。。。结果提示[Error generating final archive: Debug certificate expired on …]这种错误,从信息字面看,应该是调试的某种授权不对,到网上搜了搜,原来在C:\Users\(用户名)\.android下面有个文件:debug.keystore,将

2012-07-21 15:38:44 354

原创 读源代码时的点滴收获

Meaning of __in , __out, __in_optThese are Microsoft extensions that annotate the parameters for__in: input parameter__out output parameter__in_opt: optional input parameter

2011-11-19 23:06:18 338

原创 windows 自动失去焦点 无法输入 问题

最近电脑变得很奇怪,无论是浏览器,还是其他的各种窗口,输入框总是自动失去焦点,甚至IE都到了一刻都无法获取焦点的程度。卸载过输入法等一些软件,设置过鼠标使用规则、注册表等,仍然不奏效。突然今天想起来,Google的Chrome浏览器安装的时候,好像也同时安装了内嵌框架。于是将Chrome内嵌框架卸载掉,竟然问题完全解决了,看来Chrome的内嵌浏览器框架和Windows7有不兼容之处。现在终于可以

2011-11-03 14:21:02 4367

原创 ORBACUS for C++ 4.3.4 下载

ORBACUS for C++downloadOrbacus is a mature CORBA-compliant middleware product that has been deployed around the world in mission

2011-09-11 18:42:34 1295 1

原创 以CRichEditView为基类的MFC单文档程序向导建立后编译成功运行失败问题

鉴于很多CSDN的朋友遇到类似的问题,我把这篇文章从自己的百度空间转过来,以供参考。 今天在新系统上刚装好了VC6,测试一下,建了一个MFC单文档程序,最后的视图基类选择了CRichEditView,向导完成后,编译成功,运行却失败,提示Debug Assertion F

2011-08-22 22:34:40 789

Web 2.0 Ideas, technologies and implications for education

What is Web 2.0? Ideas, technologies and implications for education Within 15 years the Web has grown from a group work tool for scientists at CERN into a global information space with more than a billion users. Currently, it is both returning to its roots as a read/write tool and also entering a new, more social and participatory phase. These trends have led to a feeling that the Web is entering a ‘second phase’—a new, ‘improved’ Web version 2.0.

2009-04-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除